6 lines
No EOL
223 B
SQL
6 lines
No EOL
223 B
SQL
create table if not exists Images(
|
|
id varchar primary key not null,
|
|
size integer not null,
|
|
accessed timestamp not null default CURRENT_TIMESTAMP
|
|
);
|
|
create index if not exists Images_accessed on Images(accessed); |