qi6_app/db/migrate/0114_create_cel_tables.rb
2019-05-17 12:30:45 +02:00

18 lines
331 B
Ruby

# -*- encoding : utf-8 -*-
class CreateCelTables < ActiveRecord::Migration[6.0]
def self.up
create_table :cel_tables do |t|
t.integer :position
t.integer :style
t.references :table_row
t.references :table_content
t.timestamps
end
end
def self.down
drop_table :cel_tables
end
end