Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tabledump.tableplusplugin/library/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function camelize(str) {

function getColumnMigrate(columnName, dataType, isNullable, defaultVal, extra, columnComment) {
var typeArr = dataType.split("(");
var typeOnly = typeArr[0];
var typeOnly = typeArr[0].replace(' unsigned', '');
var typeLength = "";
if (typeArr.length > 1) {
typeLength = typeArr[1];
Expand Down
2 changes: 1 addition & 1 deletion tabledump.tableplusplugin/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Dump Table",
"identifier": "com.tinyapp.TablePlus.TableDump",
"version": "1.3",
"version": "1.4",
"detail": "Dump table structure",
"author": "TablePlus",
"site": "https://github.com/TablePlus/tabledump",
Expand Down
Loading