10 lines
191 B
Ruby
10 lines
191 B
Ruby
|
|
class CreateTextTrackers < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
create_table :text_trackers do |t|
|
||
|
|
t.integer :game_id
|
||
|
|
t.string :name
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|