mirror of
https://github.com/9technologygroup/patchmon.net.git
synced 2025-11-20 06:28:29 +00:00
added kernel running/installed version Added dasboard card and filteres for reboot fixed security qty updated on dnf
8 lines
230 B
SQL
8 lines
230 B
SQL
-- AlterTable
|
|
ALTER TABLE "hosts" ADD COLUMN "needs_reboot" BOOLEAN DEFAULT false;
|
|
ALTER TABLE "hosts" ADD COLUMN "installed_kernel_version" TEXT;
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "hosts_needs_reboot_idx" ON "hosts"("needs_reboot");
|
|
|