accescible_app/db/migrate/0075_create_title_contents.rb
Nicolas Bally d4484275e8 initial
2011-06-25 12:08:06 +02:00

19 lines
363 B
Ruby

# -*- encoding : utf-8 -*-
class CreateTitleContents < ActiveRecord::Migration
def self.up
create_table :title_contents do |t|
t.text :content
t.integer :level
t.string :style
t.timestamps
end
ContentType.create(:slug => "TitleContent", :name => "Titre")
end
def self.down
drop_table :title_contents
end
end