boissier_app/db/migrate/0075_create_title_contents.rb
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +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