Sha256: 571259e903a90ff847d21406acf6621f4f3926c3ca22c0fa6e5056a40d20b59c
Contents?: true
Size: 323 Bytes
Versions: 5
Compression:
Stored size: 323 Bytes
Contents
class CreateParticipates < ActiveRecord::Migration def self.up create_table :participates do |t| t.references :agent, index: true, null: false t.references :event, index: true, null: false t.integer :position t.timestamps end end def self.down drop_table :participates end end
Version data entries
5 entries across 5 versions & 1 rubygems