Sha256: ef4a30c9cb01b61b9adb0645a7b6805c11922e91c2b81c9f7e28e8977f4aa0ba
Contents?: true
Size: 401 Bytes
Versions: 32
Compression:
Stored size: 401 Bytes
Contents
class ImportHelpers < ActiveRecord::Migration def self.up add_column :readers, :old_id, :integer add_column :forums, :old_id, :integer add_column :topics, :old_id, :integer add_column :posts, :old_id, :integer end def self.down remove_column :readers, :old_id remove_column :forums, :old_id remove_column :topics, :old_id remove_column :posts, :old_id end end
Version data entries
32 entries across 32 versions & 1 rubygems