Sha256: 90ff027a49c9f3d727f87fe712db6857a4f2b9b2c0468bb11d4294c40ff2aa4d
Contents?: true
Size: 614 Bytes
Versions: 136
Compression:
Stored size: 614 Bytes
Contents
# frozen_string_literal: true class AddParticipatoryProcesses < ActiveRecord::Migration[5.0] def change create_table :decidim_participatory_processes do |t| t.string :title, null: false t.string :slug, null: false, unique: true t.string :hashtag, unique: true t.string :subtitle, null: false t.text :short_description, null: false t.text :description, null: false t.references :decidim_organization, foreign_key: true, index: { name: "index_decidim_processes_on_decidim_organization_id" } t.timestamps end end end
Version data entries
136 entries across 136 versions & 3 rubygems