migration sql to create archive database
[BackupPC.git] / sql / 02d_archive.sql
1 create table archive (
2         id              serial,
3         dvd_nr          int not null,
4         total_size      bigint default -1,
5         note            text,
6         username        varchar(20) not null,
7         date            timestamp default now(),
8         primary key(id)
9 );