fix: zero fill field option was not saved

This commit is contained in:
Fabio Di Stasio 2020-11-13 16:37:52 +01:00
parent 242ddec744
commit 3e5770f7de
2 changed files with 7 additions and 4 deletions

View File

@ -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.
@ -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.

View File

@ -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}` : ''}
@ -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}` : ''}