mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
fix: remove token migration from user
This commit is contained in:
1
drizzle/0017_minor_post.sql
Normal file
1
drizzle/0017_minor_post.sql
Normal file
@@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE "deployment" ADD COLUMN "description" text;
|
||||||
@@ -1 +0,0 @@
|
|||||||
ALTER TABLE "user" ALTER COLUMN "token" DROP NOT NULL;
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"id": "7610c85e-c3e4-4a32-8ce9-7f48b298f956",
|
"id": "ec852f38-886a-43b4-9295-73984ed8ef45",
|
||||||
"prevId": "2d8d7670-b942-4573-9c44-6e81d2a2fa16",
|
"prevId": "2d8d7670-b942-4573-9c44-6e81d2a2fa16",
|
||||||
"version": "6",
|
"version": "6",
|
||||||
"dialect": "postgresql",
|
"dialect": "postgresql",
|
||||||
@@ -465,7 +465,7 @@
|
|||||||
"name": "token",
|
"name": "token",
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"primaryKey": false,
|
"primaryKey": false,
|
||||||
"notNull": false
|
"notNull": true
|
||||||
},
|
},
|
||||||
"isRegistered": {
|
"isRegistered": {
|
||||||
"name": "isRegistered",
|
"name": "isRegistered",
|
||||||
@@ -1585,6 +1585,12 @@
|
|||||||
"primaryKey": false,
|
"primaryKey": false,
|
||||||
"notNull": true
|
"notNull": true
|
||||||
},
|
},
|
||||||
|
"description": {
|
||||||
|
"name": "description",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": false,
|
||||||
|
"notNull": false
|
||||||
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"name": "status",
|
"name": "status",
|
||||||
"type": "deploymentStatus",
|
"type": "deploymentStatus",
|
||||||
|
|||||||
@@ -124,8 +124,8 @@
|
|||||||
{
|
{
|
||||||
"idx": 17,
|
"idx": 17,
|
||||||
"version": "6",
|
"version": "6",
|
||||||
"when": 1719109531147,
|
"when": 1719547174326,
|
||||||
"tag": "0017_yummy_norrin_radd",
|
"tag": "0017_minor_post",
|
||||||
"breakpoints": true
|
"breakpoints": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -138,6 +138,7 @@ export const composeRouter = createTRPCRouter({
|
|||||||
titleLog: "Manual deployment",
|
titleLog: "Manual deployment",
|
||||||
type: "deploy",
|
type: "deploy",
|
||||||
applicationType: "compose",
|
applicationType: "compose",
|
||||||
|
descriptionLog: "",
|
||||||
};
|
};
|
||||||
await myQueue.add(
|
await myQueue.add(
|
||||||
"deployments",
|
"deployments",
|
||||||
@@ -156,6 +157,7 @@ export const composeRouter = createTRPCRouter({
|
|||||||
titleLog: "Rebuild deployment",
|
titleLog: "Rebuild deployment",
|
||||||
type: "redeploy",
|
type: "redeploy",
|
||||||
applicationType: "compose",
|
applicationType: "compose",
|
||||||
|
descriptionLog: "",
|
||||||
};
|
};
|
||||||
await myQueue.add(
|
await myQueue.add(
|
||||||
"deployments",
|
"deployments",
|
||||||
|
|||||||
Reference in New Issue
Block a user