Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/misc/database-layout.dump
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2024-08-09 22:12:34 +0200
committerErich Eckner <git@eckner.net>2024-08-09 22:12:34 +0200
commitb54f9961992d880106f7c6901423cbffe35f0a26 (patch)
tree4bca49c7e276568040b7e167d491452b2066fc80 /misc/database-layout.dump
parent9309cfd7523fdb1f7b11137924c3a154915c4f16 (diff)
make id of failed_builds a bigint
* apparently, we hit the limit of 8388607 failed builds and did no longer persist failures in the db
Diffstat (limited to 'misc/database-layout.dump')
-rw-r--r--misc/database-layout.dump2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/database-layout.dump b/misc/database-layout.dump
index be12666..a0430fe 100644
--- a/misc/database-layout.dump
+++ b/misc/database-layout.dump
@@ -644,7 +644,7 @@ fail_reasons CREATE TABLE `fail_reasons` (
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
failed_builds CREATE TABLE `failed_builds` (
- `id` mediumint(9) NOT NULL AUTO_INCREMENT,
+ `id` bigint(20) NOT NULL AUTO_INCREMENT,
`build_slave` mediumint(9) NOT NULL,
`build_assignment` bigint(20) NOT NULL,
`date` timestamp NOT NULL DEFAULT current_timestamp(),