reference images now create thumb and face on first association, so have DB for that
This commit is contained in:
@@ -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) );
|
||||
|
||||
Reference in New Issue
Block a user