zenstack
zenstack copied to clipboard
[Feature Request] Specify Postgres schema at the ZModel file level
On behalf of fox on Discord.
// user.zmodel
import "storage"
@@@schema("public")
model User { ... }
model Post {
images Image[]
}
// storage.zmodel
@@@schema("storage")
model Image {
bucket_id String
path String
}