Normalize schema_sqlite.rb to reflect TableDefinitionColumnLimits initializer (#2569)

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.
This commit is contained in:
Jeremy Daer
2026-02-18 11:13:13 -08:00
committed by GitHub
parent f39253e5f9
commit 2d7950879d
+3 -3
View File
@@ -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"