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/Create_Table_Contributors.sql

9 lines
272 B
MySQL
Raw Normal View History

CREATE TABLE Contributors (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
handle varchar(255) NOT NULL,
email varchar(255) NOT NULL,
avatar varchar(255) DEFAULT 'hpr_logo.png' NOT NULL,
default_license VARCHAR(25) DEFAULT 'CC BY-SA 4.0' NOT NULL,
profile TEXT
);