feat(frontend): Get project running again after move to Mac Mini
This commit is contained in:
@@ -6,6 +6,8 @@ create table "account" ("id" text not null primary key, "accountId" text not nul
|
||||
|
||||
create table "verification" ("id" text not null primary key, "identifier" text not null, "value" text not null, "expiresAt" date not null, "createdAt" date, "updatedAt" date);
|
||||
|
||||
create table "jwks" ("id" text not null primary key, "publicKey" text not null, "privateKey" text not null, "createdAt" date not null);
|
||||
|
||||
create table "organization" ("id" text not null primary key, "name" text not null, "slug" text not null unique, "logo" text, "createdAt" date not null, "metadata" text);
|
||||
|
||||
create table "member" ("id" text not null primary key, "organizationId" text not null references "organization" ("id"), "userId" text not null references "user" ("id"), "role" text not null, "createdAt" date not null);
|
||||
Reference in New Issue
Block a user