add submitter account_id

This commit is contained in:
Pete Matsyburka
2024-08-16 10:19:00 +03:00
parent c04483f0ea
commit d63f62109b
6 changed files with 29 additions and 9 deletions
@@ -0,0 +1,9 @@
# frozen_string_literal: true
class AddAccountIdToSubmitters < ActiveRecord::Migration[7.1]
def change
add_reference :submitters, :account, index: false, null: true
add_index :submitters, %i[account_id id]
end
end
+3 -1
View File
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2024_08_01_125558) do
ActiveRecord::Schema[7.1].define(version: 2024_08_16_064633) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -243,6 +243,8 @@ ActiveRecord::Schema[7.1].define(version: 2024_08_01_125558) do
t.string "external_id"
t.text "preferences", null: false
t.text "metadata", null: false
t.bigint "account_id"
t.index ["account_id", "id"], name: "index_submitters_on_account_id_and_id"
t.index ["email"], name: "index_submitters_on_email"
t.index ["external_id"], name: "index_submitters_on_external_id"
t.index ["slug"], name: "index_submitters_on_slug", unique: true