@@ -57,18 +57,21 @@ export interface Database {
57
57
{
58
58
foreignKeyName : "games_black_player_fkey"
59
59
columns : [ "black_player" ]
60
+ isOneToOne : false
60
61
referencedRelation : "users"
61
62
referencedColumns : [ "id" ]
62
63
} ,
63
64
{
64
65
foreignKeyName : "games_user_id_fkey"
65
66
columns : [ "user_id" ]
67
+ isOneToOne : false
66
68
referencedRelation : "users"
67
69
referencedColumns : [ "id" ]
68
70
} ,
69
71
{
70
72
foreignKeyName : "games_white_player_fkey"
71
73
columns : [ "white_player" ]
74
+ isOneToOne : false
72
75
referencedRelation : "users"
73
76
referencedColumns : [ "id" ]
74
77
}
@@ -103,6 +106,7 @@ export interface Database {
103
106
{
104
107
foreignKeyName : "integrations_user_id_fkey"
105
108
columns : [ "user_id" ]
109
+ isOneToOne : false
106
110
referencedRelation : "users"
107
111
referencedColumns : [ "id" ]
108
112
}
@@ -113,7 +117,7 @@ export interface Database {
113
117
bio : string | null
114
118
created_at : string
115
119
first_name : string | null
116
- flags : number | null
120
+ flags : number
117
121
id : string
118
122
last_name : string | null
119
123
username : string | null
@@ -122,21 +126,29 @@ export interface Database {
122
126
bio ?: string | null
123
127
created_at ?: string
124
128
first_name ?: string | null
125
- flags ?: number | null
126
- id ? : string
129
+ flags ?: number
130
+ id : string
127
131
last_name ?: string | null
128
132
username ?: string | null
129
133
}
130
134
Update : {
131
135
bio ?: string | null
132
136
created_at ?: string
133
137
first_name ?: string | null
134
- flags ?: number | null
138
+ flags ?: number
135
139
id ?: string
136
140
last_name ?: string | null
137
141
username ?: string | null
138
142
}
139
- Relationships : [ ]
143
+ Relationships : [
144
+ {
145
+ foreignKeyName : "users_id_fkey"
146
+ columns : [ "id" ]
147
+ isOneToOne : true
148
+ referencedRelation : "users"
149
+ referencedColumns : [ "id" ]
150
+ }
151
+ ]
140
152
}
141
153
}
142
154
Views : {
0 commit comments