Add Column
Current Schema
CREATE TABLE "ShippingAddress" (
"id" integer PRIMARY KEY,
"user_id" integer NOT NULL REFERENCES "User" ("id"),
"first_name" text NOT NULL,
"last_name" text NOT NULL,
"address1" text NOT NULL,
"address2" text,
"city" text NOT NULL,
"postal_code" text NOT NULL,
"state" text,
"country" text NOT NULL,
"phone_number" text,
"delivery_type" text NOT NULL,
"dropoff_id" text,
"dropoff_name" text,
"latitude" integer,
"longitude" integer
)