Archived
4
2
This repository has been archived on 2024-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
hpr_generator/_sql/sqlite/Create_Table_licenses.sql

9 lines
192 B
MySQL
Raw Normal View History

-- 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
);