refactoring and more work with clerk

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-02-07 23:28:55 +01:00
parent a9cbff2306
commit 86d2d0750f
61 changed files with 703 additions and 727 deletions

View File

@@ -0,0 +1,22 @@
/*
Warnings:
- You are about to drop the `event_failed` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `recent_dashboards` table. If the table is not empty, all the data it contains will be lost.
- Added the required column `organization_slug` to the `dashboards` table without a default value. This is not possible if the table is not empty.
*/
-- DropForeignKey
ALTER TABLE "recent_dashboards" DROP CONSTRAINT "recent_dashboards_dashboard_id_fkey";
-- DropForeignKey
ALTER TABLE "recent_dashboards" DROP CONSTRAINT "recent_dashboards_project_id_fkey";
-- AlterTable
ALTER TABLE "dashboards" ADD COLUMN "organization_slug" TEXT NOT NULL;
-- DropTable
DROP TABLE "event_failed";
-- DropTable
DROP TABLE "recent_dashboards";