blog_perso_app/db/migrate/20110215144501_create_cel_tables.rb
Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +02:00

18 lines
326 B
Ruby

# -*- encoding : utf-8 -*-
class CreateCelTables < ActiveRecord::Migration
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