album/db/00001_init.sql

26 lines
686 B
MySQL
Raw Normal View History

create table public.photo (
2015-11-29 20:34:54 +03:00
id serial primary key,
path varchar(100) unique not null,
rotation smallint
);
create table public.tag (
id serial primary key,
tag varchar(100) unique not null,
slug varchar(100) unique not null
);
create table public.photo_tag (
photo integer not null references public.photo (id),
tag integer not null references public.tag (id)
);
2015-11-29 20:34:54 +03:00
create table public.person (
id serial primary key,
name varchar(100) unique not null,
slug varchar(100) unique not null
);
create table public.photo_person (
photo integer not null references public.photo (id),
person integer not null references public.person (id)
);