Sha256: 98c1466f9e0bab4ccfedb17c34db8f3a85bdb22086c9e20f453d5fb8c72c9b4a
Contents?: true
Size: 593 Bytes
Versions: 90
Compression:
Stored size: 593 Bytes
Contents
# frozen_string_literal: true class AddAssemblyMembers < ActiveRecord::Migration[5.1] def change create_table :decidim_assembly_members do |t| t.references :decidim_assembly, index: true t.integer :weight, null: false, default: 0, index: { name: "index_decidim_assembly_members_on_weight" } t.string :full_name t.string :gender t.date :birthday t.string :birthplace t.date :designation_date t.string :designation_mode t.string :position t.string :position_other t.date :ceased_date t.timestamps end end end
Version data entries
90 entries across 90 versions & 1 rubygems