Class: CreateFriendships
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateFriendships
- Defined in:
- lib/generators/has_friendship/templates/create_friendships.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
12 13 14 |
# File 'lib/generators/has_friendship/templates/create_friendships.rb', line 12 def self.down drop_table :friendships end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'lib/generators/has_friendship/templates/create_friendships.rb', line 2 def self.up create_table :friendships do |t| t.references :friendable, polymorphic: true t.integer :friend_id t.string :status t. end end |