Skip to content

Commit 262f62d

Browse files
committed
Update sqlite schemas too
1 parent 105964d commit 262f62d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

db/cable_schema.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
# It's strongly recommended that you check this file into your version control system.
1212

1313
ActiveRecord::Schema[8.2].define(version: 1) do
14-
create_table "solid_cable_messages", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
14+
create_table "solid_cable_messages", force: :cascade do |t|
1515
t.binary "channel", limit: 1024, null: false
1616
t.bigint "channel_hash", null: false
1717
t.datetime "created_at", null: false
18-
t.binary "payload", size: :long, null: false
18+
t.binary "payload", limit: 4294967295, null: false
1919
t.index ["channel"], name: "index_solid_cable_messages_on_channel"
2020
t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash"
2121
t.index ["created_at"], name: "index_solid_cable_messages_on_created_at"

db/schema_sqlite.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema[8.2].define(version: 2025_12_01_100607) do
13+
ActiveRecord::Schema[8.2].define(version: 2025_12_05_112423) do
1414
create_table "accesses", id: :uuid, force: :cascade do |t|
1515
t.datetime "accessed_at"
1616
t.uuid "account_id", null: false
@@ -52,6 +52,7 @@
5252
end
5353

5454
create_table "accounts", id: :uuid, force: :cascade do |t|
55+
t.bigint "bytes_used", default: 0
5556
t.bigint "cards_count", default: 0, null: false
5657
t.datetime "created_at", null: false
5758
t.bigint "external_account_id"

0 commit comments

Comments
 (0)