Database based caching via diesel & SQLite added.
This commit is contained in:
0
migrations/.gitkeep
Normal file
0
migrations/.gitkeep
Normal file
1
migrations/2020-06-15-200823_images/down.sql
Normal file
1
migrations/2020-06-15-200823_images/down.sql
Normal file
@@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS images;
|
12
migrations/2020-06-15-200823_images/up.sql
Normal file
12
migrations/2020-06-15-200823_images/up.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE TABLE images (
|
||||
id VARCHAR(40) PRIMARY KEY NOT NULL,
|
||||
path VARCHAR(500) NOT NULL,
|
||||
title VARCHAR(200),
|
||||
last_changed TIMESTAMP NOT NULL,
|
||||
published BOOLEAN NOT NULL DEFAULT 'f'
|
||||
);
|
||||
|
||||
INSERT INTO images (id, path, title, last_changed, published) VALUES
|
||||
('8e153cab-7dc9-46c7-9a72-91e56ac174ca', './BlueSquare.jpg', 'Blaues Quadrat', '2020-05-27 13:33:56.747473', false );
|
||||
INSERT INTO images (id, path, title, last_changed, published) VALUES
|
||||
('ea01f5cd-a532-4232-810c-bae977cc4336', './Canon_40D.jpg', 'Canon 40d', '2020-05-27 13:33:56.747473', false );
|
Reference in New Issue
Block a user