refactoring

This commit is contained in:
2023-12-08 07:35:04 +01:00
parent 4a6326a5ab
commit f1d60881e5
32 changed files with 5949 additions and 434 deletions

View File

@@ -0,0 +1,21 @@
schema "silvermobi_backend" {}
table "users_firebase" {
schema = schema.silvermobi_backend
column "user_id" {
null = false
type = uuid
}
column "fcm_token" {
null = false
type = varchar(300)
}
columns "device_platform" {
null = false
type = text
}
primary_key {
columns = [column.user_id]
}
}