Sha256: a25470643907dbed0904d827176ef66c2cb47140d79469da44e170b356fcc02a
Contents?: true
Size: 652 Bytes
Versions: 38
Compression:
Stored size: 652 Bytes
Contents
# frozen_string_literal: true class CreateVotingsPollingStationClosures < ActiveRecord::Migration[5.2] def change create_table :decidim_votings_polling_station_closures do |t| t.integer :phase, index: true t.string :polling_officer_notes, null: true t.belongs_to :decidim_elections_election, null: false, index: false t.belongs_to :decidim_votings_polling_station, null: true, index: false t.belongs_to :decidim_votings_polling_officer, null: true, index: false t.timestamps end end end
Version data entries
38 entries across 38 versions & 1 rubygems