Skip to content

Commit

Permalink
Change lis_id data type
Browse files Browse the repository at this point in the history
These now have leading 0s, but they never should have been ints anyway.
  • Loading branch information
waldoj committed Dec 28, 2023
1 parent 6d551f1 commit 76b4400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ CREATE TABLE IF NOT EXISTS representatives (
rss_url varchar(64) CHARACTER SET latin1 DEFAULT NULL,
twitter varchar(96) CHARACTER SET latin1 DEFAULT NULL,
sbe_id varchar(11) COLLATE utf8_bin DEFAULT NULL,
lis_id smallint(5) unsigned DEFAULT NULL,
lis_id varchar(10) CHARACTER SET latin1 DEFAULT NULL,
place varchar(60) CHARACTER SET latin1 DEFAULT NULL COMMENT 'District office location',
latitude float DEFAULT NULL,
longitude float DEFAULT NULL,
Expand Down

0 comments on commit 76b4400

Please sign in to comment.