Sha256: 9cc17f0fb35d7583c006e67341c766b22f3155624d1c9802ac78f9e0b520e38b

Contents?: true

Size: 562 Bytes

Versions: 4

Compression:

Stored size: 562 Bytes

Contents

# frozen_string_literal: true

class CreateDecidimActionDelegatorParticipants < ActiveRecord::Migration[6.0]
  def change
    create_table :decidim_action_delegator_participants do |t|
      t.references :decidim_action_delegator_setting, null: false, index: { name: "index_decidim_action_delegator_participants_on_setting_id" }
      t.references :decidim_action_delegator_ponderation, index: { name: "index_decidim_action_delegator_participants_on_ponderation_id" }
      t.string :email, null: false
      t.string :phone
      t.timestamps
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
decidim-action_delegator-0.8.1 db/migrate/20230323210000_create_decidim_action_delegator_participants.rb
decidim-action_delegator-0.7.2 db/migrate/20230323210000_create_decidim_action_delegator_participants.rb
decidim-action_delegator-0.7.1 db/migrate/20230323210000_create_decidim_action_delegator_participants.rb
decidim-action_delegator-0.7.0 db/migrate/20230323210000_create_decidim_action_delegator_participants.rb