Sha256: ac5629c02e85ecce58bdc57ad967f5073709801ce2392c7e0776ff70fd4c464f
Contents?: true
Size: 574 Bytes
Versions: 64
Compression:
Stored size: 574 Bytes
Contents
class ActsAsFollowerMigration < ActiveRecord::Migration def self.up create_table :follows, :force => true do |t| t.references :followable, :polymorphic => true, :null => false t.references :follower, :polymorphic => true, :null => false t.boolean :blocked, :default => false, :null => false t.timestamps end add_index :follows, ["follower_id", "follower_type"], :name => "fk_follows" add_index :follows, ["followable_id", "followable_type"], :name => "fk_followables" end def self.down drop_table :follows end end
Version data entries
64 entries across 57 versions & 5 rubygems