class CreateTramwayEventPeopleSections

Public Instance Methods

change() click to toggle source
# File lib/tramway/event/generators/templates/create_tramway_event_people_sections.rb, line 4
def change
  create_table :tramway_event_people_sections do |t|
    t.integer :section_id
    t.integer :person_id

    t.timestamps
  end
end