Class: CreateFriendships

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/has_friends/generators/templates/create_friendships.rb

Class Method Summary collapse

Class Method Details

.downObject



10
11
12
# File 'lib/has_friends/generators/templates/create_friendships.rb', line 10

def self.down
  drop_table :friendships
end

.upObject



2
3
4
5
6
7
8
# File 'lib/has_friends/generators/templates/create_friendships.rb', line 2

def self.up
  create_table :friendships do |t|
    t.references :user, :friend
    t.string :status
    t.timestamps
  end
end