bazzar/migrations/20220519121203_account_addresses.sql

12 lines
302 B
MySQL
Raw Normal View History

2022-05-19 16:13:27 +02:00
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)
);