Add database creation scripts for sqlite old HPR schema

This commit is contained in:
2022-07-07 12:56:56 -04:00
parent c8dfd14fb4
commit e86bb8427e
5 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
-- licenses definition
CREATE TABLE licenses (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
short_name VARCHAR(11) NOT NULL,
long_name VARCHAR(40) NOT NULL,
url VARCHAR(80) NOT NULL
);