practice doing this
at main 545 B view raw
1ActiveRecord::Schema[7.1].define(version: 1) do 2 create_table "solid_cable_messages", force: :cascade do |t| 3 t.binary "channel", limit: 1024, null: false 4 t.binary "payload", limit: 536870912, null: false 5 t.datetime "created_at", null: false 6 t.integer "channel_hash", limit: 8, null: false 7 t.index ["channel"], name: "index_solid_cable_messages_on_channel" 8 t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash" 9 t.index ["created_at"], name: "index_solid_cable_messages_on_created_at" 10 end 11end