feat: Add attributes location and country_code to Contact model (#8803)

feat: Add attributes location and country_code to Contact model
This commit is contained in:
Muhsin Keloth
2024-01-29 14:10:14 +05:30
committed by GitHub
parent 766698cb3a
commit 485c561b18
3 changed files with 11 additions and 1 deletions

View File

@@ -7,11 +7,13 @@
# id :integer not null, primary key # id :integer not null, primary key
# additional_attributes :jsonb # additional_attributes :jsonb
# contact_type :integer default("visitor") # contact_type :integer default("visitor")
# country_code :string default("")
# custom_attributes :jsonb # custom_attributes :jsonb
# email :string # email :string
# identifier :string # identifier :string
# last_activity_at :datetime # last_activity_at :datetime
# last_name :string default("") # last_name :string default("")
# location :string default("")
# middle_name :string default("") # middle_name :string default("")
# name :string default("") # name :string default("")
# phone_number :string # phone_number :string

View File

@@ -0,0 +1,6 @@
class AddLocationAndCountryCodeToContacts < ActiveRecord::Migration[7.0]
def change
add_column :contacts, :location, :string, default: ''
add_column :contacts, :country_code, :string, default: ''
end
end

View File

@@ -10,7 +10,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2024_01_24_084032) do ActiveRecord::Schema[7.0].define(version: 2024_01_29_080827) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "pg_stat_statements" enable_extension "pg_stat_statements"
enable_extension "pg_trgm" enable_extension "pg_trgm"
@@ -421,6 +421,8 @@ ActiveRecord::Schema[7.0].define(version: 2024_01_24_084032) do
t.integer "contact_type", default: 0 t.integer "contact_type", default: 0
t.string "middle_name", default: "" t.string "middle_name", default: ""
t.string "last_name", default: "" t.string "last_name", default: ""
t.string "location", default: ""
t.string "country_code", default: ""
t.index "lower((email)::text), account_id", name: "index_contacts_on_lower_email_account_id" t.index "lower((email)::text), account_id", name: "index_contacts_on_lower_email_account_id"
t.index ["account_id", "email", "phone_number", "identifier"], name: "index_contacts_on_nonempty_fields", where: "(((email)::text <> ''::text) OR ((phone_number)::text <> ''::text) OR ((identifier)::text <> ''::text))" t.index ["account_id", "email", "phone_number", "identifier"], name: "index_contacts_on_nonempty_fields", where: "(((email)::text <> ''::text) OR ((phone_number)::text <> ''::text) OR ((identifier)::text <> ''::text))"
t.index ["account_id"], name: "index_contacts_on_account_id" t.index ["account_id"], name: "index_contacts_on_account_id"