mangadex-home-rs/db_queries/init.sql

6 lines
223 B
MySQL
Raw Permalink Normal View History

2021-04-22 16:44:02 +00:00
create table if not exists Images(
id varchar primary key not null,
size integer not null,
2021-04-23 01:21:32 +00:00
accessed timestamp not null default CURRENT_TIMESTAMP
2021-04-22 16:44:02 +00:00
);
create index if not exists Images_accessed on Images(accessed);