Sha256: 6ca98bd804f125687dd56180e1f30ec575db09fa3a3aa838883c7435d0ed72b7

Contents?: true

Size: 288 Bytes

Versions: 82

Compression:

Stored size: 288 Bytes

Contents

# frozen_string_literal: true

class CreateTramwayEventParticipants < ActiveRecord::Migration[5.1]
  def change
    create_table :tramway_event_participants do |t|
      t.integer :event_id
      t.jsonb :values
      t.text :state, default: :active

      t.timestamps
    end
  end
end

Version data entries

82 entries across 82 versions & 1 rubygems

Version Path
tramway-event-1.9.19.3 lib/tramway/event/generators/templates/create_tramway_event_participants.rb
tramway-event-1.9.19.2 lib/tramway/event/generators/templates/create_tramway_event_participants.rb