panier_app/migrations/00160_create_cel_tables.rb
Nicolas Bally d744a04b28 initial
2020-10-30 22:26:40 +01: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