Sha256: 4c64894cb433e4b374e75459746cf6c3cf037630ac597839c80a1bde74da11f1
Contents?: true
Size: 475 Bytes
Versions: 44
Compression:
Stored size: 475 Bytes
Contents
# frozen_string_literal: true class CreateDecidimElectionsElectionsTrustees < ActiveRecord::Migration[5.2] def change create_table :decidim_elections_elections_trustees do |t| t.belongs_to :decidim_elections_election, null: false, index: { name: "index_elections_trustees_on_decidim_elections_election_id" } t.belongs_to :decidim_elections_trustee, null: false, index: { name: "index_elections_trustees_on_decidim_elections_trustee_id" } end end end
Version data entries
44 entries across 44 versions & 1 rubygems