basic_dem_app/db/migrate/00160_create_cel_tables.rb
Nicolas Bally 3524d4c862 intial
2020-03-18 15:49:29 +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