Sha256: 1afa7ba6293fe6c7a1f25a929249c2f2cad7c074297794e2d011562d3ec56211
Contents?: true
Size: 334 Bytes
Versions: 4
Compression:
Stored size: 334 Bytes
Contents
# Creates the table for the invitation model. # origin: M class CreateInvitation < ActiveRecord::Migration def self.up create_table :invitations do |t| t.integer :sender_id t.integer :recipient_id t.integer :conference_id t.timestamps end end def self.down drop_table :invitations end end
Version data entries
4 entries across 4 versions & 1 rubygems