d7cbeed13e
* fix: heorku deploy failure * fix: set default stack to heroku-20
897 lines
38 KiB
Ruby
897 lines
38 KiB
Ruby
# 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.
|
|
#
|
|
# This file is the source Rails uses to define your schema when running `bin/rails
|
|
# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
|
|
# be faster and is potentially less error prone than running all of your
|
|
# migrations from scratch. Old migrations may fail to apply correctly if those
|
|
# migrations use external dependencies or application code.
|
|
#
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
ActiveRecord::Schema.define(version: 2022_08_09_104508) do
|
|
|
|
# These are extensions that must be enabled in order to support this database
|
|
enable_extension "pg_stat_statements"
|
|
enable_extension "pgcrypto"
|
|
enable_extension "plpgsql"
|
|
|
|
create_table "access_tokens", force: :cascade do |t|
|
|
t.string "owner_type"
|
|
t.bigint "owner_id"
|
|
t.string "token"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["owner_type", "owner_id"], name: "index_access_tokens_on_owner_type_and_owner_id"
|
|
t.index ["token"], name: "index_access_tokens_on_token", unique: true
|
|
end
|
|
|
|
create_table "account_users", force: :cascade do |t|
|
|
t.bigint "account_id"
|
|
t.bigint "user_id"
|
|
t.integer "role", default: 0
|
|
t.bigint "inviter_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.datetime "active_at"
|
|
t.integer "availability", default: 0, null: false
|
|
t.boolean "auto_offline", default: true, null: false
|
|
t.index ["account_id", "user_id"], name: "uniq_user_id_per_account_id", unique: true
|
|
t.index ["account_id"], name: "index_account_users_on_account_id"
|
|
t.index ["user_id"], name: "index_account_users_on_user_id"
|
|
end
|
|
|
|
create_table "accounts", id: :serial, force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.integer "locale", default: 0
|
|
t.string "domain", limit: 100
|
|
t.string "support_email", limit: 100
|
|
t.integer "settings_flags", default: 0, null: false
|
|
t.integer "feature_flags", default: 0, null: false
|
|
t.integer "auto_resolve_duration"
|
|
t.jsonb "limits", default: {}
|
|
t.jsonb "custom_attributes", default: {}
|
|
t.integer "status", default: 0
|
|
t.index ["status"], name: "index_accounts_on_status"
|
|
end
|
|
|
|
create_table "action_mailbox_inbound_emails", force: :cascade do |t|
|
|
t.integer "status", default: 0, null: false
|
|
t.string "message_id", null: false
|
|
t.string "message_checksum", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["message_id", "message_checksum"], name: "index_action_mailbox_inbound_emails_uniqueness", unique: true
|
|
end
|
|
|
|
create_table "active_storage_attachments", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.string "record_type", null: false
|
|
t.bigint "record_id", null: false
|
|
t.bigint "blob_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
|
|
t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
|
|
end
|
|
|
|
create_table "active_storage_blobs", force: :cascade do |t|
|
|
t.string "key", null: false
|
|
t.string "filename", null: false
|
|
t.string "content_type"
|
|
t.text "metadata"
|
|
t.bigint "byte_size", null: false
|
|
t.string "checksum", null: false
|
|
t.datetime "created_at", null: false
|
|
t.string "service_name", null: false
|
|
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
|
|
end
|
|
|
|
create_table "active_storage_variant_records", force: :cascade do |t|
|
|
t.bigint "blob_id", null: false
|
|
t.string "variation_digest", null: false
|
|
t.index ["blob_id", "variation_digest"], name: "index_active_storage_variant_records_uniqueness", unique: true
|
|
end
|
|
|
|
create_table "agent_bot_inboxes", force: :cascade do |t|
|
|
t.integer "inbox_id"
|
|
t.integer "agent_bot_id"
|
|
t.integer "status", default: 0
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.integer "account_id"
|
|
end
|
|
|
|
create_table "agent_bots", force: :cascade do |t|
|
|
t.string "name"
|
|
t.string "description"
|
|
t.string "outgoing_url"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.bigint "account_id"
|
|
t.integer "bot_type", default: 0
|
|
t.jsonb "bot_config", default: {}
|
|
t.index ["account_id"], name: "index_agent_bots_on_account_id"
|
|
end
|
|
|
|
create_table "articles", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.integer "portal_id", null: false
|
|
t.integer "category_id"
|
|
t.integer "folder_id"
|
|
t.string "title"
|
|
t.text "description"
|
|
t.text "content"
|
|
t.integer "status"
|
|
t.integer "views"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.bigint "author_id"
|
|
t.bigint "associated_article_id"
|
|
t.jsonb "meta", default: {}
|
|
t.index ["associated_article_id"], name: "index_articles_on_associated_article_id"
|
|
t.index ["author_id"], name: "index_articles_on_author_id"
|
|
end
|
|
|
|
create_table "attachments", id: :serial, force: :cascade do |t|
|
|
t.integer "file_type", default: 0
|
|
t.string "external_url"
|
|
t.float "coordinates_lat", default: 0.0
|
|
t.float "coordinates_long", default: 0.0
|
|
t.integer "message_id", null: false
|
|
t.integer "account_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.string "fallback_title"
|
|
t.string "extension"
|
|
end
|
|
|
|
create_table "automation_rules", force: :cascade do |t|
|
|
t.bigint "account_id", null: false
|
|
t.string "name", null: false
|
|
t.text "description"
|
|
t.string "event_name", null: false
|
|
t.jsonb "conditions", default: "{}", null: false
|
|
t.jsonb "actions", default: "{}", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.boolean "active", default: true, null: false
|
|
t.index ["account_id"], name: "index_automation_rules_on_account_id"
|
|
end
|
|
|
|
create_table "campaigns", force: :cascade do |t|
|
|
t.integer "display_id", null: false
|
|
t.string "title", null: false
|
|
t.text "description"
|
|
t.text "message", null: false
|
|
t.integer "sender_id"
|
|
t.boolean "enabled", default: true
|
|
t.bigint "account_id", null: false
|
|
t.bigint "inbox_id", null: false
|
|
t.jsonb "trigger_rules", default: {}
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.integer "campaign_type", default: 0, null: false
|
|
t.integer "campaign_status", default: 0, null: false
|
|
t.jsonb "audience", default: []
|
|
t.datetime "scheduled_at"
|
|
t.boolean "trigger_only_during_business_hours", default: false
|
|
t.index ["account_id"], name: "index_campaigns_on_account_id"
|
|
t.index ["campaign_status"], name: "index_campaigns_on_campaign_status"
|
|
t.index ["campaign_type"], name: "index_campaigns_on_campaign_type"
|
|
t.index ["inbox_id"], name: "index_campaigns_on_inbox_id"
|
|
t.index ["scheduled_at"], name: "index_campaigns_on_scheduled_at"
|
|
end
|
|
|
|
create_table "canned_responses", id: :serial, force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.string "short_code"
|
|
t.text "content"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "categories", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.integer "portal_id", null: false
|
|
t.string "name"
|
|
t.text "description"
|
|
t.integer "position"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.string "locale", default: "en"
|
|
t.string "slug", null: false
|
|
t.bigint "parent_category_id"
|
|
t.bigint "associated_category_id"
|
|
t.index ["associated_category_id"], name: "index_categories_on_associated_category_id"
|
|
t.index ["locale", "account_id"], name: "index_categories_on_locale_and_account_id"
|
|
t.index ["locale"], name: "index_categories_on_locale"
|
|
t.index ["parent_category_id"], name: "index_categories_on_parent_category_id"
|
|
t.index ["slug", "locale", "portal_id"], name: "index_categories_on_slug_and_locale_and_portal_id", unique: true
|
|
end
|
|
|
|
create_table "channel_api", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.string "webhook_url"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.string "identifier"
|
|
t.string "hmac_token"
|
|
t.boolean "hmac_mandatory", default: false
|
|
t.jsonb "additional_attributes", default: {}
|
|
t.index ["hmac_token"], name: "index_channel_api_on_hmac_token", unique: true
|
|
t.index ["identifier"], name: "index_channel_api_on_identifier", unique: true
|
|
end
|
|
|
|
create_table "channel_email", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.string "email", null: false
|
|
t.string "forward_to_email", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.boolean "imap_enabled", default: false
|
|
t.string "imap_address", default: ""
|
|
t.integer "imap_port", default: 0
|
|
t.string "imap_login", default: ""
|
|
t.string "imap_password", default: ""
|
|
t.boolean "imap_enable_ssl", default: true
|
|
t.datetime "imap_inbox_synced_at"
|
|
t.boolean "smtp_enabled", default: false
|
|
t.string "smtp_address", default: ""
|
|
t.integer "smtp_port", default: 0
|
|
t.string "smtp_login", default: ""
|
|
t.string "smtp_password", default: ""
|
|
t.string "smtp_domain", default: ""
|
|
t.boolean "smtp_enable_starttls_auto", default: true
|
|
t.string "smtp_authentication", default: "login"
|
|
t.string "smtp_openssl_verify_mode", default: "none"
|
|
t.boolean "smtp_enable_ssl_tls", default: false
|
|
t.index ["email"], name: "index_channel_email_on_email", unique: true
|
|
t.index ["forward_to_email"], name: "index_channel_email_on_forward_to_email", unique: true
|
|
end
|
|
|
|
create_table "channel_facebook_pages", id: :serial, force: :cascade do |t|
|
|
t.string "page_id", null: false
|
|
t.string "user_access_token", null: false
|
|
t.string "page_access_token", null: false
|
|
t.integer "account_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.string "instagram_id"
|
|
t.index ["page_id", "account_id"], name: "index_channel_facebook_pages_on_page_id_and_account_id", unique: true
|
|
t.index ["page_id"], name: "index_channel_facebook_pages_on_page_id"
|
|
end
|
|
|
|
create_table "channel_line", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.string "line_channel_id", null: false
|
|
t.string "line_channel_secret", null: false
|
|
t.string "line_channel_token", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["line_channel_id"], name: "index_channel_line_on_line_channel_id", unique: true
|
|
end
|
|
|
|
create_table "channel_sms", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.string "phone_number", null: false
|
|
t.string "provider", default: "default"
|
|
t.jsonb "provider_config", default: {}
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["phone_number"], name: "index_channel_sms_on_phone_number", unique: true
|
|
end
|
|
|
|
create_table "channel_telegram", force: :cascade do |t|
|
|
t.string "bot_name"
|
|
t.integer "account_id", null: false
|
|
t.string "bot_token", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["bot_token"], name: "index_channel_telegram_on_bot_token", unique: true
|
|
end
|
|
|
|
create_table "channel_twilio_sms", force: :cascade do |t|
|
|
t.string "phone_number"
|
|
t.string "auth_token", null: false
|
|
t.string "account_sid", null: false
|
|
t.integer "account_id", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.integer "medium", default: 0
|
|
t.string "messaging_service_sid"
|
|
t.index ["account_sid", "phone_number"], name: "index_channel_twilio_sms_on_account_sid_and_phone_number", unique: true
|
|
t.index ["messaging_service_sid"], name: "index_channel_twilio_sms_on_messaging_service_sid", unique: true
|
|
t.index ["phone_number"], name: "index_channel_twilio_sms_on_phone_number", unique: true
|
|
end
|
|
|
|
create_table "channel_twitter_profiles", force: :cascade do |t|
|
|
t.string "profile_id", null: false
|
|
t.string "twitter_access_token", null: false
|
|
t.string "twitter_access_token_secret", null: false
|
|
t.integer "account_id", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.boolean "tweets_enabled", default: true
|
|
t.index ["account_id", "profile_id"], name: "index_channel_twitter_profiles_on_account_id_and_profile_id", unique: true
|
|
end
|
|
|
|
create_table "channel_web_widgets", id: :serial, force: :cascade do |t|
|
|
t.string "website_url"
|
|
t.integer "account_id"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.string "website_token"
|
|
t.string "widget_color", default: "#1f93ff"
|
|
t.string "welcome_title"
|
|
t.string "welcome_tagline"
|
|
t.integer "feature_flags", default: 7, null: false
|
|
t.integer "reply_time", default: 0
|
|
t.string "hmac_token"
|
|
t.boolean "pre_chat_form_enabled", default: false
|
|
t.jsonb "pre_chat_form_options", default: {}
|
|
t.boolean "hmac_mandatory", default: false
|
|
t.boolean "continuity_via_email", default: true, null: false
|
|
t.index ["hmac_token"], name: "index_channel_web_widgets_on_hmac_token", unique: true
|
|
t.index ["website_token"], name: "index_channel_web_widgets_on_website_token", unique: true
|
|
end
|
|
|
|
create_table "channel_whatsapp", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.string "phone_number", null: false
|
|
t.string "provider", default: "default"
|
|
t.jsonb "provider_config", default: {}
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.jsonb "message_templates", default: {}
|
|
t.datetime "message_templates_last_updated"
|
|
t.index ["phone_number"], name: "index_channel_whatsapp_on_phone_number", unique: true
|
|
end
|
|
|
|
create_table "contact_inboxes", force: :cascade do |t|
|
|
t.bigint "contact_id"
|
|
t.bigint "inbox_id"
|
|
t.string "source_id", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.boolean "hmac_verified", default: false
|
|
t.string "pubsub_token"
|
|
t.index ["contact_id"], name: "index_contact_inboxes_on_contact_id"
|
|
t.index ["inbox_id", "source_id"], name: "index_contact_inboxes_on_inbox_id_and_source_id", unique: true
|
|
t.index ["inbox_id"], name: "index_contact_inboxes_on_inbox_id"
|
|
t.index ["pubsub_token"], name: "index_contact_inboxes_on_pubsub_token", unique: true
|
|
t.index ["source_id"], name: "index_contact_inboxes_on_source_id"
|
|
end
|
|
|
|
create_table "contacts", id: :serial, force: :cascade do |t|
|
|
t.string "name"
|
|
t.string "email"
|
|
t.string "phone_number"
|
|
t.integer "account_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.jsonb "additional_attributes", default: {}
|
|
t.string "identifier"
|
|
t.jsonb "custom_attributes", default: {}
|
|
t.datetime "last_activity_at"
|
|
t.index ["account_id"], name: "index_contacts_on_account_id"
|
|
t.index ["email", "account_id"], name: "uniq_email_per_account_contact", unique: true
|
|
t.index ["identifier", "account_id"], name: "uniq_identifier_per_account_contact", unique: true
|
|
t.index ["phone_number", "account_id"], name: "index_contacts_on_phone_number_and_account_id"
|
|
end
|
|
|
|
create_table "conversations", id: :serial, force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.integer "inbox_id", null: false
|
|
t.integer "status", default: 0, null: false
|
|
t.integer "assignee_id"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.bigint "contact_id"
|
|
t.integer "display_id", null: false
|
|
t.datetime "contact_last_seen_at"
|
|
t.datetime "agent_last_seen_at"
|
|
t.jsonb "additional_attributes", default: {}
|
|
t.bigint "contact_inbox_id"
|
|
t.uuid "uuid", default: -> { "gen_random_uuid()" }, null: false
|
|
t.string "identifier"
|
|
t.datetime "last_activity_at", default: -> { "CURRENT_TIMESTAMP" }, null: false
|
|
t.bigint "team_id"
|
|
t.bigint "campaign_id"
|
|
t.datetime "snoozed_until"
|
|
t.jsonb "custom_attributes", default: {}
|
|
t.datetime "assignee_last_seen_at"
|
|
t.datetime "first_reply_created_at"
|
|
t.index ["account_id", "display_id"], name: "index_conversations_on_account_id_and_display_id", unique: true
|
|
t.index ["account_id"], name: "index_conversations_on_account_id"
|
|
t.index ["assignee_id", "account_id"], name: "index_conversations_on_assignee_id_and_account_id"
|
|
t.index ["campaign_id"], name: "index_conversations_on_campaign_id"
|
|
t.index ["contact_inbox_id"], name: "index_conversations_on_contact_inbox_id"
|
|
t.index ["first_reply_created_at"], name: "index_conversations_on_first_reply_created_at"
|
|
t.index ["last_activity_at"], name: "index_conversations_on_last_activity_at"
|
|
t.index ["status", "account_id"], name: "index_conversations_on_status_and_account_id"
|
|
t.index ["team_id"], name: "index_conversations_on_team_id"
|
|
t.index ["uuid"], name: "index_conversations_on_uuid", unique: true
|
|
end
|
|
|
|
create_table "csat_survey_responses", force: :cascade do |t|
|
|
t.bigint "account_id", null: false
|
|
t.bigint "conversation_id", null: false
|
|
t.bigint "message_id", null: false
|
|
t.integer "rating", null: false
|
|
t.text "feedback_message"
|
|
t.bigint "contact_id", null: false
|
|
t.bigint "assigned_agent_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_csat_survey_responses_on_account_id"
|
|
t.index ["assigned_agent_id"], name: "index_csat_survey_responses_on_assigned_agent_id"
|
|
t.index ["contact_id"], name: "index_csat_survey_responses_on_contact_id"
|
|
t.index ["conversation_id"], name: "index_csat_survey_responses_on_conversation_id"
|
|
t.index ["message_id"], name: "index_csat_survey_responses_on_message_id", unique: true
|
|
end
|
|
|
|
create_table "custom_attribute_definitions", force: :cascade do |t|
|
|
t.string "attribute_display_name"
|
|
t.string "attribute_key"
|
|
t.integer "attribute_display_type", default: 0
|
|
t.integer "default_value"
|
|
t.integer "attribute_model", default: 0
|
|
t.bigint "account_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.text "attribute_description"
|
|
t.jsonb "attribute_values", default: []
|
|
t.index ["account_id"], name: "index_custom_attribute_definitions_on_account_id"
|
|
t.index ["attribute_key", "attribute_model", "account_id"], name: "attribute_key_model_index", unique: true
|
|
end
|
|
|
|
create_table "custom_filters", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.integer "filter_type", default: 0, null: false
|
|
t.jsonb "query", default: "{}", null: false
|
|
t.bigint "account_id", null: false
|
|
t.bigint "user_id", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_custom_filters_on_account_id"
|
|
t.index ["user_id"], name: "index_custom_filters_on_user_id"
|
|
end
|
|
|
|
create_table "dashboard_apps", force: :cascade do |t|
|
|
t.string "title", null: false
|
|
t.jsonb "content", default: []
|
|
t.bigint "account_id", null: false
|
|
t.bigint "user_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_dashboard_apps_on_account_id"
|
|
t.index ["user_id"], name: "index_dashboard_apps_on_user_id"
|
|
end
|
|
|
|
create_table "data_imports", force: :cascade do |t|
|
|
t.bigint "account_id", null: false
|
|
t.string "data_type", null: false
|
|
t.integer "status", default: 0, null: false
|
|
t.text "processing_errors"
|
|
t.integer "total_records"
|
|
t.integer "processed_records"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_data_imports_on_account_id"
|
|
end
|
|
|
|
create_table "email_templates", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.text "body", null: false
|
|
t.integer "account_id"
|
|
t.integer "template_type", default: 1
|
|
t.integer "locale", default: 0, null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["name", "account_id"], name: "index_email_templates_on_name_and_account_id", unique: true
|
|
end
|
|
|
|
create_table "folders", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.integer "category_id", null: false
|
|
t.string "name"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
end
|
|
|
|
create_table "inbox_members", id: :serial, force: :cascade do |t|
|
|
t.integer "user_id", null: false
|
|
t.integer "inbox_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["inbox_id", "user_id"], name: "index_inbox_members_on_inbox_id_and_user_id", unique: true
|
|
t.index ["inbox_id"], name: "index_inbox_members_on_inbox_id"
|
|
end
|
|
|
|
create_table "inboxes", id: :serial, force: :cascade do |t|
|
|
t.integer "channel_id", null: false
|
|
t.integer "account_id", null: false
|
|
t.string "name", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.string "channel_type"
|
|
t.boolean "enable_auto_assignment", default: true
|
|
t.boolean "greeting_enabled", default: false
|
|
t.string "greeting_message"
|
|
t.string "email_address"
|
|
t.boolean "working_hours_enabled", default: false
|
|
t.string "out_of_office_message"
|
|
t.string "timezone", default: "UTC"
|
|
t.boolean "enable_email_collect", default: true
|
|
t.boolean "csat_survey_enabled", default: false
|
|
t.boolean "allow_messages_after_resolved", default: true
|
|
t.jsonb "auto_assignment_config", default: {}
|
|
t.index ["account_id"], name: "index_inboxes_on_account_id"
|
|
end
|
|
|
|
create_table "installation_configs", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.jsonb "serialized_value", default: {}, null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.boolean "locked", default: true, null: false
|
|
t.index ["name", "created_at"], name: "index_installation_configs_on_name_and_created_at", unique: true
|
|
t.index ["name"], name: "index_installation_configs_on_name", unique: true
|
|
end
|
|
|
|
create_table "integrations_hooks", force: :cascade do |t|
|
|
t.integer "status", default: 0
|
|
t.integer "inbox_id"
|
|
t.integer "account_id"
|
|
t.string "app_id"
|
|
t.integer "hook_type", default: 0
|
|
t.string "reference_id"
|
|
t.string "access_token"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.jsonb "settings", default: {}
|
|
end
|
|
|
|
create_table "labels", force: :cascade do |t|
|
|
t.string "title"
|
|
t.text "description"
|
|
t.string "color", default: "#1f93ff", null: false
|
|
t.boolean "show_on_sidebar"
|
|
t.bigint "account_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_labels_on_account_id"
|
|
t.index ["title", "account_id"], name: "index_labels_on_title_and_account_id", unique: true
|
|
end
|
|
|
|
create_table "macros", force: :cascade do |t|
|
|
t.bigint "account_id", null: false
|
|
t.string "name", null: false
|
|
t.integer "visibility", default: 0
|
|
t.bigint "created_by_id", null: false
|
|
t.bigint "updated_by_id", null: false
|
|
t.jsonb "actions", default: {}, null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_macros_on_account_id"
|
|
t.index ["created_by_id"], name: "index_macros_on_created_by_id"
|
|
t.index ["updated_by_id"], name: "index_macros_on_updated_by_id"
|
|
end
|
|
|
|
create_table "mentions", force: :cascade do |t|
|
|
t.bigint "user_id", null: false
|
|
t.bigint "conversation_id", null: false
|
|
t.bigint "account_id", null: false
|
|
t.datetime "mentioned_at", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_mentions_on_account_id"
|
|
t.index ["conversation_id"], name: "index_mentions_on_conversation_id"
|
|
t.index ["user_id", "conversation_id"], name: "index_mentions_on_user_id_and_conversation_id", unique: true
|
|
t.index ["user_id"], name: "index_mentions_on_user_id"
|
|
end
|
|
|
|
create_table "messages", id: :serial, force: :cascade do |t|
|
|
t.text "content"
|
|
t.integer "account_id", null: false
|
|
t.integer "inbox_id", null: false
|
|
t.integer "conversation_id", null: false
|
|
t.integer "message_type", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.boolean "private", default: false
|
|
t.integer "status", default: 0
|
|
t.string "source_id"
|
|
t.integer "content_type", default: 0, null: false
|
|
t.json "content_attributes", default: {}
|
|
t.string "sender_type"
|
|
t.bigint "sender_id"
|
|
t.jsonb "external_source_ids", default: {}
|
|
t.jsonb "additional_attributes", default: {}
|
|
t.index "((additional_attributes -> 'campaign_id'::text))", name: "index_messages_on_additional_attributes_campaign_id", using: :gin
|
|
t.index ["account_id"], name: "index_messages_on_account_id"
|
|
t.index ["conversation_id"], name: "index_messages_on_conversation_id"
|
|
t.index ["inbox_id"], name: "index_messages_on_inbox_id"
|
|
t.index ["sender_type", "sender_id"], name: "index_messages_on_sender_type_and_sender_id"
|
|
t.index ["source_id"], name: "index_messages_on_source_id"
|
|
end
|
|
|
|
create_table "notes", force: :cascade do |t|
|
|
t.text "content", null: false
|
|
t.bigint "account_id", null: false
|
|
t.bigint "contact_id", null: false
|
|
t.bigint "user_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_notes_on_account_id"
|
|
t.index ["contact_id"], name: "index_notes_on_contact_id"
|
|
t.index ["user_id"], name: "index_notes_on_user_id"
|
|
end
|
|
|
|
create_table "notification_settings", force: :cascade do |t|
|
|
t.integer "account_id"
|
|
t.integer "user_id"
|
|
t.integer "email_flags", default: 0, null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.integer "push_flags", default: 0, null: false
|
|
t.index ["account_id", "user_id"], name: "by_account_user", unique: true
|
|
end
|
|
|
|
create_table "notification_subscriptions", force: :cascade do |t|
|
|
t.bigint "user_id", null: false
|
|
t.integer "subscription_type", null: false
|
|
t.jsonb "subscription_attributes", default: {}, null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.string "identifier"
|
|
t.index ["identifier"], name: "index_notification_subscriptions_on_identifier", unique: true
|
|
t.index ["user_id"], name: "index_notification_subscriptions_on_user_id"
|
|
end
|
|
|
|
create_table "notifications", force: :cascade do |t|
|
|
t.bigint "account_id", null: false
|
|
t.bigint "user_id", null: false
|
|
t.integer "notification_type", null: false
|
|
t.string "primary_actor_type", null: false
|
|
t.bigint "primary_actor_id", null: false
|
|
t.string "secondary_actor_type"
|
|
t.bigint "secondary_actor_id"
|
|
t.datetime "read_at"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_notifications_on_account_id"
|
|
t.index ["primary_actor_type", "primary_actor_id"], name: "uniq_primary_actor_per_account_notifications"
|
|
t.index ["secondary_actor_type", "secondary_actor_id"], name: "uniq_secondary_actor_per_account_notifications"
|
|
t.index ["user_id"], name: "index_notifications_on_user_id"
|
|
end
|
|
|
|
create_table "platform_app_permissibles", force: :cascade do |t|
|
|
t.bigint "platform_app_id", null: false
|
|
t.string "permissible_type", null: false
|
|
t.bigint "permissible_id", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["permissible_type", "permissible_id"], name: "index_platform_app_permissibles_on_permissibles"
|
|
t.index ["platform_app_id", "permissible_id", "permissible_type"], name: "unique_permissibles_index", unique: true
|
|
t.index ["platform_app_id"], name: "index_platform_app_permissibles_on_platform_app_id"
|
|
end
|
|
|
|
create_table "platform_apps", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
end
|
|
|
|
create_table "portal_members", force: :cascade do |t|
|
|
t.bigint "portal_id"
|
|
t.bigint "user_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["portal_id", "user_id"], name: "index_portal_members_on_portal_id_and_user_id", unique: true
|
|
t.index ["user_id", "portal_id"], name: "index_portal_members_on_user_id_and_portal_id", unique: true
|
|
end
|
|
|
|
create_table "portals", force: :cascade do |t|
|
|
t.integer "account_id", null: false
|
|
t.string "name", null: false
|
|
t.string "slug", null: false
|
|
t.string "custom_domain"
|
|
t.string "color"
|
|
t.string "homepage_link"
|
|
t.string "page_title"
|
|
t.text "header_text"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.jsonb "config", default: {"allowed_locales"=>["en"]}
|
|
t.boolean "archived", default: false
|
|
t.index ["slug"], name: "index_portals_on_slug", unique: true
|
|
end
|
|
|
|
create_table "portals_members", id: false, force: :cascade do |t|
|
|
t.bigint "portal_id", null: false
|
|
t.bigint "user_id", null: false
|
|
t.index ["portal_id", "user_id"], name: "index_portals_members_on_portal_id_and_user_id", unique: true
|
|
t.index ["portal_id"], name: "index_portals_members_on_portal_id"
|
|
t.index ["user_id"], name: "index_portals_members_on_user_id"
|
|
end
|
|
|
|
create_table "related_categories", force: :cascade do |t|
|
|
t.bigint "category_id"
|
|
t.bigint "related_category_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["category_id", "related_category_id"], name: "index_related_categories_on_category_id_and_related_category_id", unique: true
|
|
t.index ["related_category_id", "category_id"], name: "index_related_categories_on_related_category_id_and_category_id", unique: true
|
|
end
|
|
|
|
create_table "reporting_events", force: :cascade do |t|
|
|
t.string "name"
|
|
t.float "value"
|
|
t.integer "account_id"
|
|
t.integer "inbox_id"
|
|
t.integer "user_id"
|
|
t.integer "conversation_id"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.float "value_in_business_hours"
|
|
t.datetime "event_start_time"
|
|
t.datetime "event_end_time"
|
|
t.index ["account_id"], name: "index_reporting_events_on_account_id"
|
|
t.index ["conversation_id"], name: "index_reporting_events_on_conversation_id"
|
|
t.index ["created_at"], name: "index_reporting_events_on_created_at"
|
|
t.index ["inbox_id"], name: "index_reporting_events_on_inbox_id"
|
|
t.index ["name"], name: "index_reporting_events_on_name"
|
|
t.index ["user_id"], name: "index_reporting_events_on_user_id"
|
|
end
|
|
|
|
create_table "taggings", id: :serial, force: :cascade do |t|
|
|
t.integer "tag_id"
|
|
t.string "taggable_type"
|
|
t.integer "taggable_id"
|
|
t.string "tagger_type"
|
|
t.integer "tagger_id"
|
|
t.string "context", limit: 128
|
|
t.datetime "created_at"
|
|
t.index ["context"], name: "index_taggings_on_context"
|
|
t.index ["tag_id", "taggable_id", "taggable_type", "context", "tagger_id", "tagger_type"], name: "taggings_idx", unique: true
|
|
t.index ["tag_id"], name: "index_taggings_on_tag_id"
|
|
t.index ["taggable_id", "taggable_type", "context"], name: "index_taggings_on_taggable_id_and_taggable_type_and_context"
|
|
t.index ["taggable_id", "taggable_type", "tagger_id", "context"], name: "taggings_idy"
|
|
t.index ["taggable_id"], name: "index_taggings_on_taggable_id"
|
|
t.index ["taggable_type"], name: "index_taggings_on_taggable_type"
|
|
t.index ["tagger_id", "tagger_type"], name: "index_taggings_on_tagger_id_and_tagger_type"
|
|
t.index ["tagger_id"], name: "index_taggings_on_tagger_id"
|
|
end
|
|
|
|
create_table "tags", id: :serial, force: :cascade do |t|
|
|
t.string "name"
|
|
t.integer "taggings_count", default: 0
|
|
t.index ["name"], name: "index_tags_on_name", unique: true
|
|
end
|
|
|
|
create_table "team_members", force: :cascade do |t|
|
|
t.bigint "team_id", null: false
|
|
t.bigint "user_id", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["team_id", "user_id"], name: "index_team_members_on_team_id_and_user_id", unique: true
|
|
t.index ["team_id"], name: "index_team_members_on_team_id"
|
|
t.index ["user_id"], name: "index_team_members_on_user_id"
|
|
end
|
|
|
|
create_table "teams", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.text "description"
|
|
t.boolean "allow_auto_assign", default: true
|
|
t.bigint "account_id", null: false
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.index ["account_id"], name: "index_teams_on_account_id"
|
|
t.index ["name", "account_id"], name: "index_teams_on_name_and_account_id", unique: true
|
|
end
|
|
|
|
create_table "telegram_bots", id: :serial, force: :cascade do |t|
|
|
t.string "name"
|
|
t.string "auth_key"
|
|
t.integer "account_id"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "users", id: :serial, force: :cascade do |t|
|
|
t.string "provider", default: "email", null: false
|
|
t.string "uid", default: "", null: false
|
|
t.string "encrypted_password", default: "", null: false
|
|
t.string "reset_password_token"
|
|
t.datetime "reset_password_sent_at"
|
|
t.datetime "remember_created_at"
|
|
t.integer "sign_in_count", default: 0, null: false
|
|
t.datetime "current_sign_in_at"
|
|
t.datetime "last_sign_in_at"
|
|
t.string "current_sign_in_ip"
|
|
t.string "last_sign_in_ip"
|
|
t.string "confirmation_token"
|
|
t.datetime "confirmed_at"
|
|
t.datetime "confirmation_sent_at"
|
|
t.string "unconfirmed_email"
|
|
t.string "name", null: false
|
|
t.string "display_name"
|
|
t.string "email"
|
|
t.json "tokens"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.string "pubsub_token"
|
|
t.integer "availability", default: 0
|
|
t.jsonb "ui_settings", default: {}
|
|
t.jsonb "custom_attributes", default: {}
|
|
t.string "type"
|
|
t.text "message_signature"
|
|
t.index ["email"], name: "index_users_on_email"
|
|
t.index ["pubsub_token"], name: "index_users_on_pubsub_token", unique: true
|
|
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
|
t.index ["uid", "provider"], name: "index_users_on_uid_and_provider", unique: true
|
|
end
|
|
|
|
create_table "webhooks", force: :cascade do |t|
|
|
t.integer "account_id"
|
|
t.integer "inbox_id"
|
|
t.string "url"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.integer "webhook_type", default: 0
|
|
t.jsonb "subscriptions", default: ["conversation_status_changed", "conversation_updated", "conversation_created", "message_created", "message_updated", "webwidget_triggered"]
|
|
t.index ["account_id", "url"], name: "index_webhooks_on_account_id_and_url", unique: true
|
|
end
|
|
|
|
create_table "working_hours", force: :cascade do |t|
|
|
t.bigint "inbox_id"
|
|
t.bigint "account_id"
|
|
t.integer "day_of_week", null: false
|
|
t.boolean "closed_all_day", default: false
|
|
t.integer "open_hour"
|
|
t.integer "open_minutes"
|
|
t.integer "close_hour"
|
|
t.integer "close_minutes"
|
|
t.datetime "created_at", precision: 6, null: false
|
|
t.datetime "updated_at", precision: 6, null: false
|
|
t.boolean "open_all_day", default: false
|
|
t.index ["account_id"], name: "index_working_hours_on_account_id"
|
|
t.index ["inbox_id"], name: "index_working_hours_on_inbox_id"
|
|
end
|
|
|
|
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
|
|
add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id"
|
|
create_trigger("accounts_after_insert_row_tr", :generated => true, :compatibility => 1).
|
|
on("accounts").
|
|
after(:insert).
|
|
for_each(:row) do
|
|
"execute format('create sequence IF NOT EXISTS conv_dpid_seq_%s', NEW.id);"
|
|
end
|
|
|
|
create_trigger("conversations_before_insert_row_tr", :generated => true, :compatibility => 1).
|
|
on("conversations").
|
|
before(:insert).
|
|
for_each(:row) do
|
|
"NEW.display_id := nextval('conv_dpid_seq_' || NEW.account_id);"
|
|
end
|
|
|
|
create_trigger("camp_dpid_before_insert", :generated => true, :compatibility => 1).
|
|
on("accounts").
|
|
name("camp_dpid_before_insert").
|
|
after(:insert).
|
|
for_each(:row) do
|
|
"execute format('create sequence IF NOT EXISTS camp_dpid_seq_%s', NEW.id);"
|
|
end
|
|
|
|
create_trigger("campaigns_before_insert_row_tr", :generated => true, :compatibility => 1).
|
|
on("campaigns").
|
|
before(:insert).
|
|
for_each(:row) do
|
|
"NEW.display_id := nextval('camp_dpid_seq_' || NEW.account_id);"
|
|
end
|
|
|
|
end
|