This repository has been archived on 2024-09-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2022-07-07 12:56:56 -04:00
|
|
|
-- 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
|
|
|
|
|
);
|