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

21 lines
312 B
Ruby

# -*- encoding : utf-8 -*-
class CreatePages < ActiveRecord::Migration
def self.up
create_table :pages do |t|
t.text :title
t.text :description
t.text :keywords
t.timestamps
end
MenuItemContentType.create(:slug => "Page", :name => "page")
end
def self.down
drop_table :pages
end
end