Danny Kopping
85f56e4944
fix: recreate ai_provider_type instead of ADD VALUE ( #25895 )
...
Coder runs all migrations in a single transaction (`pgTxnDriver`).
Postgres forbids using an enum value added by `ALTER TYPE ... ADD VALUE`
within the same transaction that added it. Migration `000499` widened
`ai_provider_type` with `ADD VALUE`, and `000504` casts existing
`chat_providers` rows to that enum in the same transaction. On
deployments with a legacy provider using one of the new values (for
example `openai-compat`), the batch failed with `unsafe use of new
value` and the server could not start.
Recreate the type (create a new enum, alter the column, drop and rename)
instead of using `ADD VALUE`, matching the existing precedent in
`000144_user_status_dormant`. A freshly created enum's values are usable
immediately in the same transaction, so the cast in `000504` succeeds.
The resulting schema is identical, so `make gen` produces no `dump.sql`
diff and databases that already applied these migrations see no drift.
Added a regression test that seeds an `openai-compat` provider and
applies `000499` through `000504` in a single transaction, reproducing
the production path. The per-step `Stepper` used by the other migration
tests commits each migration separately and cannot surface this class of
bug.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
---------
Signed-off-by: Danny Kopping <danny@coder.com >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-01 13:30:45 +00:00
..
2026-05-29 10:08:25 -04:00
2026-03-11 10:19:08 -07:00
2025-05-02 17:29:57 +01:00
2025-05-02 17:29:57 +01:00
2025-05-12 13:50:07 -06:00
2025-05-12 13:50:07 -06:00
2025-05-13 00:01:31 +01:00
2025-05-13 00:01:31 +01:00
2025-05-13 13:52:55 +01:00
2025-05-13 13:52:55 +01:00
2025-05-13 20:51:01 +02:00
2025-05-13 20:51:01 +02:00
2025-05-14 14:52:22 +02:00
2025-05-14 14:52:22 +02:00
2025-05-14 12:21:36 -05:00
2025-05-14 12:21:36 -05:00
2025-05-15 15:32:52 +01:00
2025-05-15 15:32:52 +01:00
2025-05-15 17:55:17 -05:00
2025-05-15 17:55:17 -05:00
2025-05-21 15:16:38 -04:00
2025-05-21 15:16:38 -04:00
2025-05-21 15:16:38 -04:00
2025-05-21 15:16:38 -04:00
2025-05-27 11:42:07 -03:00
2025-05-27 11:42:07 -03:00
2025-05-27 13:13:08 -06:00
2025-05-27 13:13:08 -06:00
2025-05-28 14:21:17 +01:00
2025-05-28 14:21:17 +01:00
2025-05-29 08:55:19 -05:00
2025-05-29 08:55:19 -05:00
2025-06-12 12:15:05 -04:00
2025-06-12 12:15:05 -04:00
2025-06-13 15:54:02 +02:00
2025-06-13 15:54:02 +02:00
2025-06-16 16:15:59 -06:00
2025-06-16 16:15:59 -06:00
2025-06-17 16:08:34 +02:00
2025-06-17 16:08:34 +02:00
2025-06-19 13:32:51 +00:00
2025-06-19 13:32:51 +00:00
2025-06-19 11:08:48 -04:00
2025-06-19 11:08:48 -04:00
2025-06-20 14:34:31 -08:00
2025-06-20 14:34:31 -08:00
2025-06-24 12:19:19 +02:00
2025-06-24 12:19:19 +02:00
2025-06-24 10:36:37 +00:00
2025-06-24 10:36:37 +00:00
2025-06-25 13:03:32 +00:00
2025-06-25 13:03:32 +00:00
2025-07-01 15:39:29 +02:00
2025-07-01 15:39:29 +02:00
2025-07-02 15:05:42 +00:00
2025-07-02 15:05:42 +00:00
2025-07-02 16:15:10 +00:00
2025-07-02 16:15:10 +00:00
2025-07-03 18:33:47 +02:00
2025-07-03 18:33:47 +02:00
2025-07-03 19:13:13 +02:00
2025-07-03 19:13:13 +02:00
2025-07-15 14:36:06 +10:00
2025-07-15 14:36:06 +10:00
2025-07-22 13:11:27 +02:00
2025-07-22 13:11:27 +02:00
2025-07-28 15:02:26 +01:00
2025-07-28 15:02:26 +01:00
2025-07-28 20:41:49 -05:00
2025-07-28 20:41:49 -05:00
2025-07-30 13:42:39 -07:00
2025-07-30 13:42:39 -07:00
2025-07-30 17:02:51 -06:00
2025-07-30 17:02:51 -06:00
2025-07-30 19:09:53 -05:00
2025-07-30 19:09:53 -05:00
2025-08-07 11:00:31 +10:00
2025-08-07 06:19:00 +00:00
2025-08-07 15:58:59 -04:00
2025-08-07 15:58:59 -04:00
2025-08-14 09:50:31 -05:00
2025-08-14 09:50:31 -05:00
2025-08-16 01:31:00 +10:00
2025-08-16 01:31:00 +10:00
2025-08-19 10:29:51 +02:00
2025-08-19 10:29:51 +02:00
2025-08-21 07:56:41 -07:00
2025-08-21 07:56:41 -07:00
2025-08-30 03:39:37 +10:00
2025-08-30 03:39:37 +10:00
2025-09-04 13:43:50 -07:00
2025-09-04 13:43:50 -07:00
2025-09-08 08:54:12 +00:00
2025-09-08 08:54:12 +00:00
2025-09-08 13:13:12 +03:00
2025-09-08 13:13:12 +03:00
2025-09-10 10:01:50 +01:00
2025-09-10 10:01:50 +01:00
2025-09-10 11:01:54 -05:00
2025-09-10 11:01:54 -05:00
2025-09-11 15:08:57 +02:00
2025-09-11 15:08:57 +02:00
2025-09-15 12:30:17 +10:00
2025-09-15 12:30:17 +10:00
2025-09-16 21:31:17 +02:00
2025-09-16 21:31:17 +02:00
2025-09-22 19:26:51 +02:00
2025-11-25 21:44:59 -06:00
2025-09-25 13:32:16 +02:00
2025-09-25 13:32:16 +02:00
2025-09-26 11:56:34 +02:00
2025-09-26 11:56:34 +02:00
2025-09-27 00:20:33 +10:00
2025-09-27 00:20:33 +10:00
2025-09-29 13:17:08 +02:00
2025-09-29 13:17:08 +02:00
2025-09-29 16:44:53 +01:00
2025-09-29 16:44:53 +01:00
2025-10-06 12:08:17 +02:00
2025-10-06 12:08:17 +02:00
2025-10-13 12:02:22 +03:00
2025-10-13 12:02:22 +03:00
2025-10-13 12:25:58 +03:00
2025-10-13 12:25:58 +03:00
2025-10-13 12:42:38 +03:00
2025-10-13 12:42:38 +03:00
2025-10-15 16:13:59 +00:00
2025-10-15 16:13:59 +00:00
2025-10-15 16:34:33 +00:00
2025-10-15 16:34:33 +00:00
2025-10-16 10:21:08 +01:00
2025-10-16 10:21:08 +01:00
2025-10-20 18:28:10 -04:00
2025-10-20 18:28:10 -04:00
2025-10-22 16:18:31 +11:00
2025-10-22 16:18:31 +11:00
2025-10-23 13:29:05 +02:00
2025-10-23 13:29:05 +02:00
2025-10-23 19:29:23 +03:00
2025-10-23 19:29:23 +03:00
2025-10-23 15:38:49 -05:00
2025-10-23 15:38:49 -05:00
2025-10-24 11:54:51 +00:00
2025-10-24 11:54:51 +00:00
2025-10-28 03:16:41 +11:00
2025-10-28 03:16:41 +11:00
2025-10-28 14:29:29 +00:00
2025-10-28 14:29:29 +00:00
2025-10-28 17:21:23 +00:00
2025-10-28 17:21:23 +00:00
2025-10-29 15:45:45 +00:00
2025-10-29 15:45:45 +00:00
2025-11-03 13:46:38 +02:00
2025-11-03 13:46:38 +02:00
2025-11-07 12:45:45 +02:00
2025-11-07 12:45:45 +02:00
2025-11-10 13:46:41 +01:00
2025-11-10 13:46:41 +01:00
2025-11-13 14:04:12 -06:00
2025-11-13 14:04:12 -06:00
2025-11-14 18:05:29 +00:00
2025-11-14 18:05:29 +00:00
2025-11-20 17:12:25 +01:00
2025-11-20 17:12:25 +01:00
2025-11-25 13:00:59 +00:00
2025-11-25 13:00:59 +00:00
2026-01-14 05:40:30 +02:00
2026-01-14 05:40:30 +02:00
2025-12-04 17:56:13 +02:00
2025-12-04 17:56:13 +02:00
2025-12-15 08:42:08 -08:00
2025-12-15 08:42:08 -08:00
2026-01-05 07:43:08 -08:00
2026-01-05 07:43:08 -08:00
2026-01-09 11:13:16 -06:00
2026-01-09 11:13:16 -06:00
2026-01-12 18:19:19 -08:00
2026-01-12 18:19:19 -08:00
2026-01-12 18:19:19 -08:00
2026-01-12 18:19:19 -08:00
2026-01-12 18:19:19 -08:00
2026-01-12 18:19:19 -08:00
2026-01-21 12:12:12 +02:00
2026-01-21 12:12:12 +02:00
2026-01-26 14:27:17 +04:00
2026-01-26 14:27:17 +04:00
2026-01-27 13:29:21 -07:00
2026-01-27 13:29:21 -07:00
2026-01-28 08:01:58 +04:00
2026-01-28 08:01:58 +04:00
2026-01-30 17:19:19 +00:00
2026-01-30 17:19:19 +00:00
2026-02-04 15:33:48 +00:00
2026-02-04 15:33:48 +00:00
2026-02-05 14:08:03 +02:00
2026-02-05 14:08:03 +02:00
2026-02-05 14:38:55 -06:00
2026-02-05 14:38:55 -06:00
2026-02-10 16:17:29 -08:00
2026-02-10 16:17:29 -08:00
2026-02-17 15:43:02 +01:00
2026-02-17 15:43:02 +01:00
2026-02-18 16:30:16 +00:00
2026-02-18 16:30:16 +00:00
2026-02-23 12:18:44 +01:00
2026-02-23 12:18:44 +01:00
2026-02-23 22:46:17 -06:00
2026-02-23 22:46:17 -06:00
2026-02-27 16:50:56 +00:00
2026-02-27 16:50:56 +00:00
2026-02-27 16:46:19 -05:00
2026-02-27 16:46:19 -05:00
2026-02-28 12:27:26 -05:00
2026-02-28 12:27:26 -05:00
2026-02-28 16:46:51 -05:00
2026-02-28 16:46:51 -05:00
2026-03-03 21:04:41 +02:00
2026-03-03 21:04:41 +02:00
2026-03-05 13:40:53 -07:00
2026-03-05 13:40:53 -07:00
2026-03-06 14:43:53 +02:00
2026-03-06 14:43:53 +02:00
2026-03-06 21:05:26 +02:00
2026-03-06 21:05:26 +02:00
2026-03-10 13:55:33 +00:00
2026-03-10 13:55:33 +00:00
2026-03-11 10:00:38 -04:00
2026-03-11 10:00:38 -04:00
2026-03-11 11:50:45 -04:00
2026-03-11 11:50:45 -04:00
2026-03-11 10:19:08 -07:00
2026-03-11 10:19:08 -07:00
2026-03-13 16:47:36 +00:00
2026-03-13 16:47:36 +00:00
2026-03-13 18:30:49 +01:00
2026-03-13 18:30:49 +01:00
2026-03-13 19:49:34 +01:00
2026-03-13 19:49:34 +01:00
2026-03-13 18:54:07 -04:00
2026-03-13 18:54:07 -04:00
2026-03-14 17:24:19 +00:00
2026-03-14 17:24:19 +00:00
2026-03-16 11:53:20 -05:00
2026-03-16 11:53:20 -05:00
2026-03-16 15:30:25 -05:00
2026-03-16 15:30:25 -05:00
2026-03-17 01:24:03 +01:00
2026-03-17 01:24:03 +01:00
2026-03-17 11:41:10 +00:00
2026-03-17 11:41:10 +00:00
2026-03-17 12:16:43 -07:00
2026-03-17 12:16:43 -07:00
2026-03-18 09:30:22 -05:00
2026-03-18 09:30:22 -05:00
2026-03-18 15:29:29 +00:00
2026-03-18 15:29:29 +00:00
2026-03-18 14:37:09 -04:00
2026-03-18 14:37:09 -04:00
2026-03-19 14:07:36 +00:00
2026-03-19 14:07:36 +00:00
2026-03-23 12:42:50 -06:00
2026-03-23 12:42:50 -06:00
2026-03-24 08:58:47 +02:00
2026-03-24 08:58:47 +02:00
2026-03-24 14:57:40 +01:00
2026-03-24 14:57:40 +01:00
2026-03-25 17:26:26 +00:00
2026-03-25 17:26:26 +00:00
2026-03-26 17:22:38 +11:00
2026-03-26 17:22:38 +11:00
2026-03-26 16:52:02 -04:00
2026-03-26 16:52:02 -04:00
2026-03-27 14:23:25 +00:00
2026-03-27 14:23:25 +00:00
2026-03-27 12:15:04 -04:00
2026-03-27 12:15:04 -04:00
2026-03-30 14:11:30 -04:00
2026-03-30 14:11:30 -04:00
2026-03-31 10:07:21 +01:00
2026-03-31 10:07:21 +01:00
2026-04-02 10:58:13 +01:00
2026-04-02 10:58:13 +01:00
2026-05-22 09:50:01 +02:00
2026-04-02 19:46:42 +02:00
2026-04-02 15:40:32 -06:00
2026-04-02 15:40:32 -06:00
2026-04-03 16:27:31 +02:00
2026-04-03 16:27:31 +02:00
2026-04-07 12:05:29 +01:00
2026-04-07 12:05:29 +01:00
2026-04-08 11:54:44 -04:00
2026-04-08 11:54:44 -04:00
2026-04-08 13:24:28 -04:00
2026-04-08 13:24:28 -04:00
2026-04-09 16:33:00 +02:00
2026-04-09 16:33:00 +02:00
2026-04-10 17:13:19 +00:00
2026-04-10 17:13:19 +00:00
2026-04-13 12:31:25 +01:00
2026-04-13 12:31:25 +01:00
2026-04-13 15:06:06 +02:00
2026-04-13 15:06:06 +02:00
2026-04-16 11:12:01 +02:00
2026-04-16 11:12:01 +02:00
2026-04-16 23:57:05 +10:00
2026-04-16 23:57:05 +10:00
2026-04-17 13:40:17 +02:00
2026-04-17 13:40:17 +02:00
2026-04-21 11:11:56 +01:00
2026-04-21 11:11:56 +01:00
2026-04-21 11:10:17 +00:00
2026-04-21 11:10:17 +00:00
2026-05-22 09:50:01 +02:00
2026-04-22 19:34:34 +10:00
2026-04-23 17:59:42 +01:00
2026-04-23 17:59:42 +01:00
2026-04-23 18:36:20 +01:00
2026-04-23 18:36:20 +01:00
2026-04-24 14:18:28 +01:00
2026-04-24 14:18:28 +01:00
2026-04-24 14:49:11 +00:00
2026-04-24 14:49:11 +00:00
2026-04-26 14:49:10 -07:00
2026-04-26 14:49:10 -07:00
2026-04-28 08:56:36 +01:00
2026-04-28 08:56:36 +01:00
2026-04-29 12:57:47 -06:00
2026-04-29 12:57:47 -06:00
2026-04-30 12:29:35 +02:00
2026-04-30 12:29:35 +02:00
2026-05-01 15:00:08 -05:00
2026-05-01 15:00:08 -05:00
2026-05-03 11:31:48 -04:00
2026-05-03 11:31:48 -04:00
2026-05-05 12:56:06 +10:00
2026-05-05 12:56:06 +10:00
2026-05-05 10:56:39 -06:00
2026-05-05 10:56:39 -06:00
2026-05-05 22:37:13 +02:00
2026-05-05 22:37:13 +02:00
2026-05-06 16:43:35 +02:00
2026-05-06 16:43:35 +02:00
2026-05-08 16:45:14 -04:00
2026-05-08 16:45:14 -04:00
2026-05-11 09:07:30 -06:00
2026-05-11 09:07:30 -06:00
2026-05-12 08:54:53 -04:00
2026-05-12 08:54:53 -04:00
2026-05-12 16:20:25 -04:00
2026-05-12 16:20:25 -04:00
2026-05-13 11:06:42 -04:00
2026-05-13 11:06:42 -04:00
2026-05-14 12:43:12 +02:00
2026-05-14 12:43:12 +02:00
2026-05-14 16:10:46 +02:00
2026-05-14 16:10:46 +02:00
2026-05-14 17:18:50 +01:00
2026-05-14 17:18:50 +01:00
2026-05-14 15:54:37 -04:00
2026-05-14 15:54:37 -04:00
2026-05-18 08:33:29 -04:00
2026-05-18 08:33:29 -04:00
2026-06-01 13:30:45 +00:00
2026-06-01 13:30:45 +00:00
2026-05-18 15:17:20 -04:00
2026-05-18 15:17:20 -04:00
2026-05-18 22:32:05 +01:00
2026-05-18 22:32:05 +01:00
2026-05-20 00:09:09 +02:00
2026-05-20 00:09:09 +02:00
2026-05-22 02:16:01 +02:00
2026-05-22 02:16:01 +02:00
2026-05-22 09:50:01 +02:00
2026-05-22 02:16:01 +02:00
2026-05-22 09:50:01 +02:00
2026-05-22 09:50:01 +02:00
2026-05-22 16:10:37 +02:00
2026-05-22 16:10:37 +02:00
2026-05-25 11:14:36 +02:00
2026-05-25 11:14:36 +02:00
2026-05-26 19:31:52 +00:00
2026-05-26 19:31:52 +00:00
2026-05-26 14:42:31 -06:00
2026-05-26 14:42:31 -06:00
2026-05-29 16:49:25 +10:00
2026-05-29 16:49:25 +10:00
2026-05-29 12:50:39 +02:00
2026-05-29 12:50:39 +02:00
2026-05-29 12:50:39 +02:00
2026-05-29 12:50:39 +02:00
2026-05-29 10:08:25 -04:00
2026-05-29 10:08:25 -04:00
2026-06-01 13:30:45 +00:00
2026-03-10 15:51:46 +00:00