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

Ajax

开发平台:

Others

  1. class AddArticleGuid < ActiveRecord::Migration
  2.   def self.up
  3.     # the guid itself will be added later in the migration
  4.     add_column :articles, :guid, :string
  5.   end
  6.   def self.down
  7.     remove_column :articles, :guid
  8.   end
  9. end