rework PR comments

This commit is contained in:
Claus-Peter Hübner 2022-06-09 22:28:56 +02:00
parent fd352602ec
commit 3328c200d8
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
*.log
*.bak
/node_modules/*
messages.pot
nbproject

View File

@ -24,7 +24,7 @@ export async function upgrade(queryFn: (query: string, values?: any[]) => Promis
\`created_at\` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
\`deleted_at\` datetime NULL DEFAULT NULL,
\`code\` varchar(24) COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
\`link_enabled\` tinyint(4) NOT NULL DEFAULT '0',
\`link_enabled\` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (\`id\`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;`)
}