Fix schema
Some checks failed
Run unit tests / rubocop (pull_request) Successful in 45s
Run unit tests / check-licenses (pull_request) Successful in 47s
Run unit tests / copyright_notice (pull_request) Failing after 1m19s
Run unit tests / unit_tests (pull_request) Successful in 4m1s
Run unit tests / build-static-assets (pull_request) Has been skipped

This commit is contained in:
Manuel Bustillo 2025-01-24 00:29:29 +01:00
parent d35c0353fc
commit 1306a33e8a

6
db/schema.rb generated
View File

@ -1,7 +1,3 @@
# Copyright (C) 2024 Manuel Bustillo
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
@ -41,7 +37,7 @@ ActiveRecord::Schema[8.0].define(version: 2024_12_16_231415) do
t.index "LEAST(group_a_id, group_b_id), GREATEST(group_a_id, group_b_id)", name: "uindex_group_pair", unique: true
t.index ["group_a_id"], name: "index_group_affinities_on_group_a_id"
t.index ["group_b_id"], name: "index_group_affinities_on_group_b_id"
t.check_constraint "discomfort >= 0::double precision AND discomfort <= 2::double precision"
t.check_constraint "discomfort >= 0::double precision AND discomfort <= 2::double precision", name: "check_valid_discomfort"
t.check_constraint "group_a_id <> group_b_id", name: "check_distinct_groups"
end