fix: migration problem

This commit is contained in:
Abubeker Yasin
2026-06-29 15:05:46 +03:00
parent b3ec6e4235
commit 079351f7c4

View File

@@ -113,5 +113,5 @@ CREATE TABLE "system_features" (
);
-- Insert the configurable fares feature flag
INSERT INTO "system_features" ("id", "feature_name", "is_enabled", "config")
VALUES ('cf-001', 'USE_CONFIGURABLE_FARES', false, '{"rollout_percentage": 0}');
INSERT INTO "system_features" ("id", "feature_name", "is_enabled", "config", "updated_at")
VALUES ('cf-001', 'USE_CONFIGURABLE_FARES', false, '{"rollout_percentage": 0}', CURRENT_TIMESTAMP);