008_add_page_title.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. class Bare8Page < ActiveRecord::Base
  2.   include BareMigration
  3. end
  4. class AddPageTitle < ActiveRecord::Migration
  5.   def self.up
  6.     add_column :pages, :title, :string
  7.     Bare8Page.create(:name=>"about",
  8.       :title=>"about",
  9.       :user_id=>1,
  10.       :body=>"This is an example of a Typo page. You can edit this to write information about yourself or your site so readers know who you are. You can create as many pages as this one as you like and manage all of your content inside Typo."  
  11.       )
  12.   end
  13.   def self.down
  14.     remove_column :pages, :title
  15.   end
  16. end