We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cf88e7 commit e49cb9dCopy full SHA for e49cb9d
src/output/sqlite.js
@@ -29,11 +29,11 @@ const COLUMNS = {
29
* @returns {string}
30
*/
31
function getGeneralColumnType(columnName) {
32
- if(['iid'].includes(columnName)) {
+ if(['id'].includes(columnName)) {
33
return 'INTEGER PRIMARY KEY';
34
}
35
36
- if(['id', 'project_id'].includes(columnName)) {
+ if(['iid', 'project_id'].includes(columnName)) {
37
return 'INTEGER';
38
39
0 commit comments