jfn_app/db/migrate/0075_create_title_contents.rb
Nicolas Bally 0d62fbe429 initial
2011-12-29 11:06:37 +01: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