changed db address

This commit is contained in:
2024-11-19 11:03:32 -05:00
parent 1d27bcc20a
commit b969d861b2

View File

@@ -6,5 +6,6 @@ export const accounts = pgTable("bal_accounts", {
id: integer().primaryKey().generatedAlwaysAsIdentity({ name: "accountsid_seq", startWith: 1, increment: 1, minValue: 1, maxValue: 2147483647, cache: 1 }),
first_name: varchar({ length: 40 }),
last_name: varchar({ length: 40 }),
email: varchar({length: 100}),
...timestamps
})