From 7e2f3894f6c679abd7c0d3f68e8b200e7c2e003f Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Thu, 3 Jul 2025 16:11:44 +0200 Subject: [PATCH] Fix merge issues --- db/schema.rb | 7 +++++++ db/schema_cache.yml | 47 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/db/schema.rb b/db/schema.rb index 0edc58ac5..ea2c34fc1 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -133,6 +133,13 @@ ActiveRecord::Schema[8.1].define(version: 2025_07_02_211937) do t.index ["stage_id"], name: "index_cards_on_stage_id" end + create_table "closers_filters", id: false, force: :cascade do |t| + t.integer "closer_id", null: false + t.integer "filter_id", null: false + t.index ["closer_id"], name: "index_closers_filters_on_closer_id" + t.index ["filter_id"], name: "index_closers_filters_on_filter_id" + end + create_table "closure_reasons", force: :cascade do |t| t.datetime "created_at", null: false t.string "label" diff --git a/db/schema_cache.yml b/db/schema_cache.yml index b53c5f750..b4653b357 100644 --- a/db/schema_cache.yml +++ b/db/schema_cache.yml @@ -462,6 +462,18 @@ columns: collation: comment: - *9 + closers_filters: + - !ruby/object:ActiveRecord::ConnectionAdapters::SQLite3::Column + auto_increment: + name: closer_id + cast_type: *3 + sql_type_metadata: *4 + 'null': false + default: + default_function: + collation: + comment: + - *19 closure_reasons: - *5 - *6 @@ -1092,6 +1104,7 @@ primary_keys: card_engagements: id card_goldnesses: id cards: id + closers_filters: closure_reasons: id closures: id collection_publications: id @@ -1135,6 +1148,7 @@ data_sources: card_engagements: true card_goldnesses: true cards: true + closers_filters: true closure_reasons: true closures: true collection_publications: true @@ -1555,6 +1569,39 @@ indexes: nulls_not_distinct: comment: valid: true + closers_filters: + - !ruby/object:ActiveRecord::ConnectionAdapters::IndexDefinition + table: closers_filters + name: index_closers_filters_on_closer_id + unique: false + columns: + - closer_id + lengths: {} + orders: {} + opclasses: {} + where: + type: + using: + include: + nulls_not_distinct: + comment: + valid: true + - !ruby/object:ActiveRecord::ConnectionAdapters::IndexDefinition + table: closers_filters + name: index_closers_filters_on_filter_id + unique: false + columns: + - filter_id + lengths: {} + orders: {} + opclasses: {} + where: + type: + using: + include: + nulls_not_distinct: + comment: + valid: true closure_reasons: [] closures: - !ruby/object:ActiveRecord::ConnectionAdapters::IndexDefinition