oswilno/migrations/20220715115332_add_contacts.sql

8 lines
206 B
MySQL
Raw Normal View History

2022-07-15 16:00:00 +02:00
CREATE TABLE contacts
(
id serial not null primary key unique,
owner_id int not null references accounts (id),
contact_type text not null,
content text not null
);