Sha256: f37ac558857719a2f9b346334a4731bdd39b209e4ac2c6bcaae4b083ad0ffd25
Contents?: true
Size: 331 Bytes
Versions: 4
Compression:
Stored size: 331 Bytes
Contents
# Creates the table for the friendship model. # origin: M class CreateFriendshipRequests < ActiveRecord::Migration def self.up create_table :friendship_requests do |t| t.integer :user_id t.integer :requesting_user_id t.timestamps end end def self.down drop_table :friendship_requests end end
Version data entries
4 entries across 4 versions & 1 rubygems