mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 10:46:44 -05:00
database backup and some minor changes
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { integer, varchar, pgTable } from "drizzle-orm/pg-core";
|
||||
|
||||
export const states = pgTable("states", {
|
||||
export const State = pgTable("states", {
|
||||
id: integer().primaryKey().generatedByDefaultAsIdentity({ name: "states_id_seq", startWith: 1, increment: 1, minValue: 1, maxValue: 2147483647, cache: 1 }),
|
||||
state: varchar({ length: 50 }),
|
||||
abbreviation: varchar({ length: 50 }),
|
||||
|
||||
Reference in New Issue
Block a user