Skip to content

Commit 23df3fb

Browse files
committed
refactor: regenerate migrations
1 parent 93c7f1c commit 23df3fb

File tree

8 files changed

+22
-8680
lines changed

8 files changed

+22
-8680
lines changed

apps/dokploy/components/layouts/side.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"use client";
2-
import { useState, useEffect } from "react";
32
import {
43
Activity,
54
AudioWaveform,
@@ -28,6 +27,7 @@ import {
2827
Users,
2928
} from "lucide-react";
3029
import { usePathname } from "next/navigation";
30+
import { useEffect, useState } from "react";
3131
import type * as React from "react";
3232

3333
import {
@@ -45,8 +45,8 @@ import {
4545
} from "@/components/ui/collapsible";
4646
import { Separator } from "@/components/ui/separator";
4747
import {
48-
Sidebar,
4948
SIDEBAR_COOKIE_NAME,
49+
Sidebar,
5050
SidebarContent,
5151
SidebarFooter,
5252
SidebarGroup,

apps/dokploy/drizzle/0057_oval_ken_ellis.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ALTER TABLE "admin" RENAME COLUMN "cleanupCacheOnDeployments" TO "cleanupCacheApplications";--> statement-breakpoint
1+
ALTER TABLE "admin" ADD COLUMN "cleanupCacheApplications" boolean DEFAULT true NOT NULL;--> statement-breakpoint
22
ALTER TABLE "admin" ADD COLUMN "cleanupCacheOnPreviews" boolean DEFAULT false NOT NULL;--> statement-breakpoint
33
ALTER TABLE "admin" ADD COLUMN "cleanupCacheOnCompose" boolean DEFAULT false NOT NULL;

apps/dokploy/drizzle/0058_cultured_warpath.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/dokploy/drizzle/meta/0057_snapshot.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "0b4b4db4-2e13-4ef0-8bdd-85bc4bbfe10b",
2+
"id": "b00fa001-dd12-4f37-97dc-478c7a790779",
33
"prevId": "24787a88-0754-437a-b077-03a3265b8ef5",
44
"version": "6",
55
"dialect": "postgresql",
@@ -969,12 +969,26 @@
969969
"notNull": true,
970970
"default": 0
971971
},
972-
"enableCleanupCache": {
973-
"name": "enableCleanupCache",
972+
"cleanupCacheApplications": {
973+
"name": "cleanupCacheApplications",
974974
"type": "boolean",
975975
"primaryKey": false,
976976
"notNull": true,
977977
"default": true
978+
},
979+
"cleanupCacheOnPreviews": {
980+
"name": "cleanupCacheOnPreviews",
981+
"type": "boolean",
982+
"primaryKey": false,
983+
"notNull": true,
984+
"default": false
985+
},
986+
"cleanupCacheOnCompose": {
987+
"name": "cleanupCacheOnCompose",
988+
"type": "boolean",
989+
"primaryKey": false,
990+
"notNull": true,
991+
"default": false
978992
}
979993
},
980994
"indexes": {},

0 commit comments

Comments
 (0)