forget some files

This commit is contained in:
Denis Fedoseev 2018-09-10 22:19:52 +03:00
parent 664b26ddac
commit d08a19b7cb
2 changed files with 23 additions and 0 deletions

6
public/vendor/js/vue.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,17 @@
-- Deploy fotostore:images to sqlite
BEGIN;
CREATE TABLE images (
file_id INTEGER PRIMARY KEY AUTOINCREMENT,
owner_id INTEGER NOT NULL,
file_name TEXT NOT NULL,
created_time DATETIME NOT NULL
DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (
owner_id
)
REFERENCES users (user_id) ON DELETE CASCADE
);
COMMIT;