refactor: userpreferences are now in the DB
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
-- CreateTable
|
||||
CREATE TABLE "user_preferences" (
|
||||
"id" TEXT NOT NULL PRIMARY KEY,
|
||||
"kanbanFilters" JSONB,
|
||||
"viewPreferences" JSONB,
|
||||
"columnVisibility" JSONB,
|
||||
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
"updatedAt" DATETIME NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user