From 2d7950879dde281fc9cdeed6640d758fe28afcfa Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Wed, 18 Feb 2026 11:13:13 -0800 Subject: [PATCH] Normalize schema_sqlite.rb to reflect TableDefinitionColumnLimits initializer (#2569) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The table_definition_column_limits initializer (PR #1669) applies a default limit of 255 to all string columns during schema:load, but schema_sqlite.rb was never re-dumped after it landed. This caused drift on every subsequent migration PR that dumped the schema. Re-dump from schema:load → schema:dump to make the file idempotent. --- db/schema_sqlite.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/schema_sqlite.rb b/db/schema_sqlite.rb index 6ea0a137d..e06492288 100644 --- a/db/schema_sqlite.rb +++ b/db/schema_sqlite.rb @@ -42,7 +42,7 @@ ActiveRecord::Schema[8.2].define(version: 2026_02_13_170100) do t.uuid "account_id" t.datetime "completed_at" t.datetime "created_at", null: false - t.string "failure_reason" + t.string "failure_reason", limit: 255 t.uuid "identity_id", null: false t.string "status", limit: 255, default: "pending", null: false t.datetime "updated_at", null: false @@ -299,7 +299,7 @@ ActiveRecord::Schema[8.2].define(version: 2026_02_13_170100) do t.datetime "completed_at" t.datetime "created_at", null: false t.string "status", limit: 255, default: "pending", null: false - t.string "type" + t.string "type", limit: 255 t.datetime "updated_at", null: false t.uuid "user_id", null: false t.index ["account_id"], name: "index_exports_on_account_id" @@ -495,7 +495,7 @@ ActiveRecord::Schema[8.2].define(version: 2026_02_13_170100) do t.string "operation", limit: 255, null: false t.uuid "recordable_id" t.string "recordable_type", limit: 255 - t.string "request_id" + t.string "request_id", limit: 255 t.uuid "user_id" t.index ["account_id"], name: "index_storage_entries_on_account_id" t.index ["blob_id"], name: "index_storage_entries_on_blob_id"