Sha256: 07ccc79a571df5407f648238eec30278f87a56078d519750eaf315603c21d348
Contents?: true
Size: 527 Bytes
Versions: 88
Compression:
Stored size: 527 Bytes
Contents
# frozen_string_literal: true class CreateDecidimInitiativesTypes < ActiveRecord::Migration[5.1] def change create_table :decidim_initiatives_types do |t| t.jsonb :title, null: false t.jsonb :description, null: false t.integer :supports_required, null: false t.integer :decidim_organization_id, foreign_key: true, index: { name: "index_decidim_initiative_types_on_decidim_organization_id" } t.timestamps end end end
Version data entries
88 entries across 88 versions & 1 rubygems