new enterprise entity
This commit is contained in:
9
dataconnect/schema/enterprise.gql
Normal file
9
dataconnect/schema/enterprise.gql
Normal file
@@ -0,0 +1,9 @@
|
||||
type Enterprise @table(name: "enterprise") {
|
||||
id: UUID! @default(expr: "uuidV4()")
|
||||
enterpriseNumber: String!
|
||||
enterpriseName: String!
|
||||
enterpriseCode: String!
|
||||
createdDate: Timestamp @default(expr: "request.time")
|
||||
updatedDate: Timestamp @default(expr: "request.time")
|
||||
createdBy: String @default(expr: "auth.uid")
|
||||
}
|
||||
Reference in New Issue
Block a user