Added a quick mockup for equipment / instruction manuals (references #25)

This commit is contained in:
Bernd Bestel
2018-10-02 20:03:08 +02:00
parent f90faca62e
commit edb986ce24
11 changed files with 385 additions and 2 deletions

7
migrations/0041.sql Normal file
View File

@@ -0,0 +1,7 @@
CREATE TABLE equipment (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
name TEXT NOT NULL UNIQUE,
description TEXT,
instruction_manual_file_name TEXT,
row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime'))
)