Sha256: b8a8215650912e0de140c33e91b2439fd410b86b4dfb151f9d3c01077b6917c2
Contents?: true
Size: 507 Bytes
Versions: 3
Compression:
Stored size: 507 Bytes
Contents
# frozen_string_literal: true class AddNotifyNotesReferences < ActiveRecord::Migration[5.2] def change add_reference :decidim_notify_notes, :decidim_notify_author, index: { name: "index_decidim_notify_notes_on_decidim_notify_author_id" } add_reference :decidim_notify_notes, :decidim_user, index: { name: "index_decidim_notify_notes_on_decidim_user_id" } add_reference :decidim_notify_notes, :decidim_component, index: { name: "index_decidim_notify_notes_on_decidim_component_id" } end end
Version data entries
3 entries across 3 versions & 1 rubygems