reference images now create thumb and face on first association, so have DB for that

This commit is contained in:
2021-07-04 20:05:47 +10:00
parent 388c3eed9b
commit ddc9b18e3e

View File

@@ -40,8 +40,9 @@ create table ENTRY_DIR_LINK ( entry_id integer, dir_eid integer,
create table PERSON ( ID integer, TAG varchar(48), FIRSTNAME varchar(48), SURNAME varchar(48),
constraint PK_PERSON_ID primary key(ID) );
create table REFIMG ( ID integer, FNAME varchar(256), ENCODINGS bytea,
CREATED_ON float,
create table REFIMG ( ID integer, FNAME varchar(256), FACE bytea,
ENCODINGS bytea,
CREATED_ON float, THUMBNAIL varchar,
constraint PK_REFIMG_ID primary key(ID) );
create table FACE( ID integer, FACE bytea, constraint PK_FACE_ID primary key(ID) );