Fixing schema.sql on main (#24628)

This commit is contained in:
Victor Lyuboslavsky
2024-12-10 17:17:21 -06:00
committed by GitHub
parent 68f2d99b25
commit fe3606e512
+1 -1
View File
@@ -1662,7 +1662,7 @@ CREATE TABLE `secret_variables` (
`created_at` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
`updated_at` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
PRIMARY KEY (`id`),
UNIQUE KEY `idx_name` (`name`)
UNIQUE KEY `idx_secret_variables_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40101 SET @saved_cs_client = @@character_set_client */;