Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/misc
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
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')
-rw-r--r--misc/database-layout.dmf2
-rw-r--r--misc/database-layout.dump2
2 files changed, 2 insertions, 2 deletions
diff --git a/misc/database-layout.dmf b/misc/database-layout.dmf
index 012f306..2864718 100644
--- a/misc/database-layout.dmf
+++ b/misc/database-layout.dmf
@@ -565,7 +565,7 @@
<column-list>
<column>
<name>id</name>
- <data-type>MEDIUMINT</data-type>
+ <data-type>BIGINT</data-type>
<required>True</required>
<primary-key>True</primary-key>
</column>
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(),