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

Ajax

开发平台:

Others

  1. class AddPages < ActiveRecord::Migration
  2.   def self.up
  3.     create_table :pages do |t|
  4.       t.column :name, :string
  5.       t.column :user_id, :integer
  6.       t.column :body, :text
  7.       t.column :body_html, :text
  8.       t.column :text_filter, :string
  9.       t.column :created_at, :datetime
  10.       t.column :updated_at, :datetime
  11.     end
  12.   end
  13.   def self.down
  14.     drop_table :pages
  15.   end
  16. end