🚀 Add TypeScript code
This commit is contained in:
parent
59f6ae0f11
commit
89faa530ec
17 changed files with 368 additions and 8 deletions
9
src/model/createStatement.ts
Normal file
9
src/model/createStatement.ts
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue