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

Ajax

开发平台:

Others

  1. class AddGuids < ActiveRecord::Migration
  2.   def self.up
  3.     STDERR.puts "Adding GUIDs to Comments and Trackbacks"
  4.     modify_tables_and_update([:add_column, :comments,   :guid, :string],
  5.                              [:add_column, :trackbacks, :guid, :string])
  6.   end
  7.   def self.down
  8.     remove_column :comments, :guid
  9.     remove_column :trackbacks, :guid
  10.   end
  11. end