mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
14 lines
591 B
Ruby
14 lines
591 B
Ruby
class AddSolidCableTables < ActiveRecord::Migration[8.0]
|
|
def change
|
|
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
|
|
end
|