10 lines
212 B
Ruby
10 lines
212 B
Ruby
|
|
class CreateTextTrackerMessages < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
create_table :text_tracker_messages do |t|
|
||
|
|
t.integer :text_tracker_id
|
||
|
|
t.text :text
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|