File indexing completed on 2025-02-02 04:18:01

0001 CREATE TABLE IF NOT EXISTS storages (
0002     id INTEGER PRIMARY KEY AUTOINCREMENT
0003 ,   storage_type_id INTEGER
0004 ,   location TEXT
0005 ,   timestamp INTEGER
0006 ,   pre_installed INTEGER
0007 ,   active INTEGER
0008 ,   thumbnail BLOB           /* the image representing the storage visually*/
0009 ,   FOREIGN KEY(storage_type_id) REFERENCES storage_types(id)
0010 ,   UNIQUE(location)
0011 );