be38c83fd8
* db cleanup * dev * pg setup * postgres uuid migration * cleanup * fk * sqlite migration * cleanup * wal * max open conns = 1 * fix panic --------- Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
13 lines
410 B
SQL
13 lines
410 B
SQL
alter table blocks add mtime integer default 0;
|
|
create index blocks_mtime on blocks(mtime);
|
|
|
|
CREATE TRIGGER update_blocks_mtime_insert after insert on blocks for each row
|
|
begin
|
|
update blocks set mtime = strftime('%s', 'now') where pos = new.pos;
|
|
end;
|
|
|
|
CREATE TRIGGER update_blocks_mtime_update after update on blocks for each row
|
|
begin
|
|
update blocks set mtime = strftime('%s', 'now') where pos = old.pos;
|
|
end;
|