You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So when i use the command "bun prisma studio" i get sent to the localhost:5555 link but it just keeps saying we are getting things ready for you, no error, nothing and its been like this for over an hour and ive restarted multiple times, if anyone could help that would be amazing!
How to reproduce
Expected behavior
Ive been in the studio before so i expected to see all my tables ect..
Prisma information
datasource db {
provider = "sqlite"
url = "file:./database.sqlite"
}
model User {
id String @id@default(cuid())
email String @unique
password String
name String?
tier Tier @default(Free)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
apps Apps[]
}
model Apps {
id String @id@default(cuid())
email String
name String?
description String? // Made optional
createdAt DateTime @default(now())
userId String // Foreign key to User
user User @relation(fields: [userId], references: [id])
}
Environment & setup
OS: mac-->
Browser:
Database:
Prisma logs
No response
The text was updated successfully, but these errors were encountered:
Bug description
So when i use the command "bun prisma studio" i get sent to the localhost:5555 link but it just keeps saying we are getting things ready for you, no error, nothing and its been like this for over an hour and ive restarted multiple times, if anyone could help that would be amazing!
How to reproduce
Expected behavior
Ive been in the studio before so i expected to see all my tables ect..
Prisma information
datasource db {
provider = "sqlite"
url = "file:./database.sqlite"
}
generator client {
provider = "prisma-client-js"
}
enum Tier {
Free
Starter
Enterprise
}
model User {
id String @id @default(cuid())
email String @unique
password String
name String?
tier Tier @default(Free)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
apps Apps[]
}
model Apps {
id String @id @default(cuid())
email String
name String?
description String? // Made optional
createdAt DateTime @default(now())
userId String // Foreign key to User
user User @relation(fields: [userId], references: [id])
}
Environment & setup
Prisma logs
No response
The text was updated successfully, but these errors were encountered: