Sha256: cc79c4869e1d4f6e5c3bd29374e576068f951f22700968dabe8d12fcd1cd36a3
Contents?: true
Size: 454 Bytes
Versions: 44
Compression:
Stored size: 454 Bytes
Contents
# frozen_string_literal: true class CreateDecidimElectionsVotes < ActiveRecord::Migration[5.2] def change create_table :decidim_elections_votes do |t| t.belongs_to :decidim_elections_election, null: false, index: { name: "index_elections_votes_on_decidim_elections_election_id" } t.string :voter_id, null: false t.string :encrypted_vote_hash, null: false t.string :status, null: false t.timestamps end end end
Version data entries
44 entries across 44 versions & 1 rubygems