Skip to content

Commit

Permalink
[BUGFIX] Make some DB fields visually smaller (#544)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee authored Apr 15, 2024
1 parent 6bfd391 commit 6e23ad0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Removed

### Fixed
- Make some DB fields visually smaller (#544)

## 6.1.1

Expand Down
6 changes: 3 additions & 3 deletions ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
#
CREATE TABLE fe_users (
full_salutation varchar(255) DEFAULT '' NOT NULL,
gender int(11) unsigned DEFAULT '0' NOT NULL,
gender tinyint(2) unsigned DEFAULT '0' NOT NULL,
date_of_birth int(11) DEFAULT '0' NOT NULL,
zone varchar(45) DEFAULT '' NOT NULL,
privacy tinyint(4) unsigned DEFAULT '0' NOT NULL,
privacy tinyint(1) unsigned DEFAULT '0' NOT NULL,
terms_acknowledged tinyint(1) unsigned DEFAULT '0' NOT NULL,
status int(11) unsigned DEFAULT '0' NOT NULL,
status tinyint(1) unsigned DEFAULT '0' NOT NULL,
comments text
);

0 comments on commit 6e23ad0

Please sign in to comment.