Sha256: 4cde4058b6fdb3e8d6fe61cecdbf1024aaa71027a6adfa9bd4b7c0de0a6981e5
Contents?: true
Size: 529 Bytes
Versions: 93
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true class CreateParticipatorySpaceLinks < ActiveRecord::Migration[5.0] def change create_table :decidim_participatory_space_links do |t| t.references :from, null: false, polymorphic: true, index: { name: "index_participatory_space_links_on_from" } t.references :to, null: false, polymorphic: true, index: { name: "index_participatory_space_links_on_to" } t.string :name, null: false, index: { name: "index_participatory_space_links_name" } t.jsonb :data end end end
Version data entries
93 entries across 93 versions & 1 rubygems