Added build time showing

Fixed package downloading 503 error
This commit is contained in:
Alexey Berezhok
2025-12-03 23:47:03 +03:00
parent 54bf61d301
commit f2136260c9
8 changed files with 34 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
require "sequel"
Sequel.migration do
change do
alter_table(:buildtask) do
add_column :buildstart, DateTime
add_column :buildstop, DateTime
set_column_allow_null :buildstart
set_column_allow_null :buildstop
end
end
end