Add Image id column to the database schema

This commit is contained in:
Alessio 2021-08-04 01:27:14 -07:00
parent 7a81b71cd3
commit 5503743e35

View File

@ -59,6 +59,7 @@ create table urls (rowid integer primary key,
);
create table images (rowid integer primary key,
id integer unique not null check(typeof(id) = 'integer'),
tweet_id integer not null,
filename text not null unique,
is_downloaded boolean default 0,