Sha256: 57321a8c4ae18934f16e2b219380bf695057b2b7fdffc7dbd7167923b5edb0d4
Contents?: true
Size: 443 Bytes
Versions: 16
Compression:
Stored size: 443 Bytes
Contents
class DeleteMonitorships < ActiveRecord::Migration def up drop_table :fms_monitorships end def down create_table :fms_monitorships, :force => true do |t| t.integer :account_id t.integer :user_id t.integer :forum_topic_id t.datetime :created_at t.datetime :updated_at t.boolean :active, :default => true end add_index :fms_monitorships, :account_id end end
Version data entries
16 entries across 16 versions & 1 rubygems