Sha256: c337b2599e48ac9244560d2cd34c952be9fa2f67703a754eddd4044d9440774e
Contents?: true
Size: 332 Bytes
Versions: 26
Compression:
Stored size: 332 Bytes
Contents
class CreateAttendees < ActiveRecord::Migration def self.up create_table :event_calendar_attendees do |t| t.integer :event_id t.integer :participant_id t.string :participant_type t.string :role t.timestamps end end def self.down drop_table :event_calendar_attendees end end
Version data entries
26 entries across 26 versions & 1 rubygems