This had gotten stripped

This commit is contained in:
David Heinemeier Hansson
2025-12-02 12:28:25 +01:00
committed by Stanko K.R.
parent 9254d17359
commit 0ba43de61a
+10 -1
View File
@@ -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