diff --git a/db/cable_schema.rb b/db/cable_schema.rb index ce4b03e6a..58afcedf5 100644 --- a/db/cable_schema.rb +++ b/db/cable_schema.rb @@ -10,5 +10,14 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[8.2].define(version: 0) do +ActiveRecord::Schema[8.2].define(version: 1) do + create_table "solid_cable_messages", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t| + t.binary "channel", limit: 1024, null: false + t.bigint "channel_hash", null: false + t.datetime "created_at", null: false + t.binary "payload", size: :long, null: false + t.index ["channel"], name: "index_solid_cable_messages_on_channel" + t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash" + t.index ["created_at"], name: "index_solid_cable_messages_on_created_at" + end end