I have ```type User { foo: String }``` and I want ...
# orm-help
s
I have
Copy code
type User {
foo: String
}
and I want to rename the type
Copy code
type User {
foo: Float
}
I'm getting
You already have nodes for this model. This change may result in data loss.
when I run
prisma deploy
j
Do you have any data in your database?
If not, then you can run
prisma deploy -f
which will accept data loss.
l
If you have data check prisma migrations