diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-08-28 03:31:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-28 03:31:54 +0200 |
commit | c556c3a0d1e54a6b07bbdd8f76cbb43672a91fd1 (patch) | |
tree | 4a5b8cbce1e63c42d79c6feb8606343bdb26313b /db/schema.rb | |
parent | b399d79545e5e5430cb9d6a2c936efc244b69a75 (diff) |
Add admin API for managing canonical e-mail blocks (#19067)
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index 83fd9549c..db22f538a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2022_08_24_164532) do +ActiveRecord::Schema.define(version: 2022_08_27_195229) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -296,7 +296,7 @@ ActiveRecord::Schema.define(version: 2022_08_24_164532) do create_table "canonical_email_blocks", force: :cascade do |t| t.string "canonical_email_hash", default: "", null: false - t.bigint "reference_account_id", null: false + t.bigint "reference_account_id" t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.index ["canonical_email_hash"], name: "index_canonical_email_blocks_on_canonical_email_hash", unique: true |