🚀 Add TypeScript code

This commit is contained in:
C-3PO 2018-11-09 00:52:03 +01:00
parent 59f6ae0f11
commit 89faa530ec
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
17 changed files with 368 additions and 8 deletions

View file

@ -0,0 +1,9 @@
//Generated by `SHOW CREATE TABLE ssn_versions`
const createStatement = `CREATE TABLE \`ssn_versions\` (
\`product\` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
\`manifest\` smallint(6) NOT NULL DEFAULT '-1',
\`http\` smallint(6) NOT NULL DEFAULT '-1',
PRIMARY KEY (\`product\`(25))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci`;
export default createStatement;