Sha256: 1c2426330a296f36b7787fd87d607e0d684909ba8ece8c79ba82568ada6b60b3
Contents?: true
Size: 623 Bytes
Versions: 12
Compression:
Stored size: 623 Bytes
Contents
class AddConstraintsToMostRecentForUserExportFileTransitions < ActiveRecord::Migration[4.2] disable_ddl_transaction! def up add_index :user_export_file_transitions, %i[user_export_file_id most_recent], unique: true, where: "most_recent", name: "index_user_export_file_transitions_parent_most_recent" # , algorithm: :concurrently change_column_null :user_export_file_transitions, :most_recent, false end def down remove_index :user_export_file_transitions, name: "index_user_export_file_transitions_parent_most_recent" change_column_null :user_export_file_transitions, :most_recent, true end end
Version data entries
12 entries across 12 versions & 2 rubygems