From 3ef6adccd6e2429ab91ef4cbfa4619497ba81a93 Mon Sep 17 00:00:00 2001 From: Eric Leroy-Terquem Date: Tue, 28 Feb 2023 08:39:37 +0100 Subject: [PATCH] feat(db): add routing column to groupe_instructeurs --- app/models/groupe_instructeur.rb | 1 + ...0230228073530_add_routing_column_to_groupe_instructeur.rb | 5 +++++ db/schema.rb | 1 + 3 files changed, 7 insertions(+) create mode 100644 db/migrate/20230228073530_add_routing_column_to_groupe_instructeur.rb diff --git a/app/models/groupe_instructeur.rb b/app/models/groupe_instructeur.rb index ffa3902ae..aa1e8e81a 100644 --- a/app/models/groupe_instructeur.rb +++ b/app/models/groupe_instructeur.rb @@ -5,6 +5,7 @@ # id :bigint not null, primary key # closed :boolean default(FALSE) # label :text not null +# routing_rule :jsonb # created_at :datetime not null # updated_at :datetime not null # procedure_id :bigint not null diff --git a/db/migrate/20230228073530_add_routing_column_to_groupe_instructeur.rb b/db/migrate/20230228073530_add_routing_column_to_groupe_instructeur.rb new file mode 100644 index 000000000..4f6a6b00d --- /dev/null +++ b/db/migrate/20230228073530_add_routing_column_to_groupe_instructeur.rb @@ -0,0 +1,5 @@ +class AddRoutingColumnToGroupeInstructeur < ActiveRecord::Migration[6.1] + def change + add_column :groupe_instructeurs, :routing_rule, :jsonb + end +end diff --git a/db/schema.rb b/db/schema.rb index c9e434122..b023fb8d2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -585,6 +585,7 @@ ActiveRecord::Schema.define(version: 2023_03_22_150907) do t.datetime "created_at", null: false t.text "label", null: false t.bigint "procedure_id", null: false + t.jsonb "routing_rule" t.datetime "updated_at", null: false t.index ["closed", "procedure_id"], name: "index_groupe_instructeurs_on_closed_and_procedure_id" t.index ["procedure_id", "label"], name: "index_groupe_instructeurs_on_procedure_id_and_label", unique: true