@zodic/shared 0.0.100 → 0.0.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/db/schema.ts
CHANGED
|
@@ -35,6 +35,7 @@ export const users = sqliteTable(
|
|
|
35
35
|
latitude: real('latitude').notNull(),
|
|
36
36
|
longitude: real('longitude').notNull(),
|
|
37
37
|
tzone: real('tzone'), // Nullable for inferred timezone
|
|
38
|
+
birthLocation: text('birth_location').notNull(),
|
|
38
39
|
instagramUsername: text('instagram_username').unique(), // Nullable for optional social media
|
|
39
40
|
tiktokUsername: text('tiktok_username').unique(), // Fix typo
|
|
40
41
|
oauthProvider: text('oauth_provider'), // e.g., "google", "facebook", "apple", nullable for password-based login
|