File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ type User struct {
3030 EmailVerifiedAt time.Time `json:"email_verified_at" bun:"email_verified_at"`
3131 EmailVerificationToken string `json:"email_verification_token" bun:"email_verification_token"`
3232 EmailVerificationTokenExpiresAt time.Time `json:"email_verification_token_expires_at" bun:"email_verification_token_expires_at"`
33- AssignedStorage int64 `json:"assigned_storage" bun:"assigned_storage,notnull,default:0"`
34- UsedStorage int64 `json:"used_storage" bun:"used_storage,notnull,default:0"`
33+ AssignedStorage int64 `json:"assigned_storage" bun:"assigned_storage,type:bigint, notnull,default:0"`
34+ UsedStorage int64 `json:"used_storage" bun:"used_storage,type:bigint, notnull,default:0"`
3535 NextBillingAt time.Time `json:"next_billing_at" bun:"next_billing_at"`
3636}
3737
You can’t perform that action at this time.
0 commit comments