2022-11-04 18:40:14 +01:00
|
|
|
CREATE TABLE public.account_addresses (
|
2022-11-11 16:32:07 +01:00
|
|
|
id serial NOT NULL,
|
2022-11-04 18:40:14 +01:00
|
|
|
name text NOT NULL,
|
|
|
|
email text NOT NULL,
|
|
|
|
street text NOT NULL,
|
|
|
|
city text NOT NULL,
|
|
|
|
country text NOT NULL,
|
|
|
|
zip text NOT NULL,
|
|
|
|
account_id integer,
|
|
|
|
is_default boolean DEFAULT false NOT NULL,
|
|
|
|
phone text DEFAULT ''::text NOT NULL
|
|
|
|
);
|