Sha256: 5e72876a8c1dd97bfa2ded57fd96fb07392d0d9b249b4549d6042e061a67a54c
Contents?: true
Size: 1.78 KB
Versions: 16
Compression:
Stored size: 1.78 KB
Contents
# 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. # # Note that this schema.rb definition is the authoritative source for your # database schema. If you need to create the application database on another # system, you should be using db:schema:load, not running all the migrations # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 2020_10_05_164116) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" enable_extension "uuid-ossp" create_table "message_bus_subscription_events", id: :uuid, default: nil, force: :cascade do |t| t.uuid "subscription_id", null: false t.string "partition_key", null: false t.string "topic_name", null: false t.uuid "company_uuid", null: false t.json "event_json", null: false t.datetime "created_at" t.index ["created_at"], name: "index_nulogy_mb_producer_subscription_events_on_created_at" end create_table "message_bus_subscriptions", id: :uuid, default: nil, force: :cascade do |t| t.uuid "subscription_group_id", null: false t.string "event_type", null: false t.string "topic_name", null: false t.string "query", null: false t.text "schema_key", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["event_type"], name: "index_nulogy_mb_producer_subscriptions_on_event_type" end end
Version data entries
16 entries across 16 versions & 1 rubygems