Skip to content

Commit

Permalink
Merge pull request #172 from hathitrust/169_user.kerberos_length_fix
Browse files Browse the repository at this point in the history
Fix #169 Update field length of user.kerberos in schema
  • Loading branch information
moseshll authored Apr 19, 2024
2 parents 42925f3 + 291d0cf commit c7db0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/db/sql/001_crms_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ DROP TABLE IF EXISTS `users`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` varchar(64) NOT NULL,
`kerberos` varchar(12) DEFAULT NULL,
`kerberos` varchar(64) DEFAULT NULL,
`name` mediumtext NOT NULL,
`reviewer` tinyint(1) NOT NULL DEFAULT '1',
`advanced` tinyint(1) NOT NULL DEFAULT '0',
Expand Down

0 comments on commit c7db0cc

Please sign in to comment.