lockaz_app/db/migrate/00160_create_cel_tables.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02:00

13 lines
285 B
Ruby

class CreateCelTables < ActiveRecord::Migration[6.0]
def change
create_table :cel_tables do |t|
t.integer :position
t.integer :style
t.references :table_row, index: true
t.integer :table_content_id
t.timestamps
end
end
end