initial commit
This commit is contained in:
commit
06a12df43f
99 changed files with 3257 additions and 0 deletions
11
db/cable_schema.rb
Normal file
11
db/cable_schema.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
ActiveRecord::Schema[7.1].define(version: 1) do
|
||||
create_table "solid_cable_messages", force: :cascade do |t|
|
||||
t.binary "channel", limit: 1024, null: false
|
||||
t.binary "payload", limit: 536870912, null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.integer "channel_hash", limit: 8, 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
|
Loading…
Add table
Add a link
Reference in a new issue