Skip to content

Commit

Permalink
fix: zero fill field option was not saved
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Nov 13, 2020
1 parent 242ddec commit 3e5770f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ An application created with minimalism and semplicity in mind, with features in
## Current main features

- Multiple database connections at same time.
- Table's content management (add/edit/delete).
- Database management (add/edit/delete).
- Tables fields management (add/edit/delete).
- Tables content management (add/edit/delete).
- Run queries on multiple tabs.
- Query suggestions.
- Database management (add/edit/delete).
- Native dark theme.
- Multi language.
- Auto updates.
Expand All @@ -40,13 +41,13 @@ An application created with minimalism and semplicity in mind, with features in

This is a roadmap with major features will come in near future.

- Improvements of query editor area.
- Tables management (add/edit/delete).
- Users management (add/edit/delete).
- Stored procedures, views, schedulers and trigger support.
- Stored procedures, views, schedulers and triggers support.
- More secure password storage.
- Database tools (variables, process list...).
- Support for other databases.
- Improvements of query editor area.
- Improvements of query suggestions.
- Query history.
- More context menu shortcuts.
Expand Down
2 changes: 2 additions & 0 deletions src/main/libs/clients/MySQLClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ export class MySQLClient extends AntaresCore {
alterColumns.push(`ADD COLUMN \`${addition.name}\`
${addition.type.toUpperCase()}${length ? `(${length})` : ''}
${addition.unsigned ? 'UNSIGNED' : ''}
${addition.zerofill ? 'ZEROFILL' : ''}
${addition.nullable ? 'NULL' : 'NOT NULL'}
${addition.autoIncrement ? 'AUTO_INCREMENT' : ''}
${addition.default ? `DEFAULT ${addition.default}` : ''}
Expand All @@ -307,6 +308,7 @@ export class MySQLClient extends AntaresCore {
alterColumns.push(`CHANGE COLUMN \`${change.orgName}\` \`${change.name}\`
${change.type.toUpperCase()}${length ? `(${length})` : ''}
${change.unsigned ? 'UNSIGNED' : ''}
${change.zerofill ? 'ZEROFILL' : ''}
${change.nullable ? 'NULL' : 'NOT NULL'}
${change.autoIncrement ? 'AUTO_INCREMENT' : ''}
${change.default ? `DEFAULT ${change.default}` : ''}
Expand Down

0 comments on commit 3e5770f

Please sign in to comment.