12 lines
302 B
MySQL
12 lines
302 B
MySQL
|
CREATE TABLE account_addresses
|
||
|
(
|
||
|
id serial not null primary key unique,
|
||
|
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 int references accounts (id)
|
||
|
);
|