thirteen-tien-len_classic/db/migrate/20151125090607_create_tables.rb
2019-10-29 06:12:08 -07:00

10 lines
155 B
Ruby

class CreateTables < ActiveRecord::Migration[5.2]
def change
create_table :tables do |t|
t.string :title
t.timestamps
end
end
end