Sha256: c8052a3543fc403f2e5fb15397cba54f277f07d6a4fbce1c572e902d11f2e593
Contents?: true
Size: 682 Bytes
Versions: 38
Compression:
Stored size: 682 Bytes
Contents
# frozen_string_literal: true class AddDecidimVotingsCensusData < ActiveRecord::Migration[5.2] def change create_table :decidim_votings_census_data do |t| t.string :hashed_in_person_data, index: true t.string :hashed_online_data, index: true t.string :hashed_check_data, index: true t.string :full_name t.string :full_address t.string :postal_code t.string :mobile_phone_number, null: true t.string :email, null: true t.string :access_code, null: true t.belongs_to :decidim_votings_census_dataset, null: false, index: { name: "decidim_votings_census_dataset_census_datum" } t.timestamps end end end
Version data entries
38 entries across 38 versions & 1 rubygems