Skip to content

Commit

Permalink
Cloud usernames can be whole email addresses, up the system username …
Browse files Browse the repository at this point in the history
…to be able to support this
  • Loading branch information
plessbd committed Aug 20, 2019
1 parent 41849f9 commit 3bf9d08
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
{
"name": "username",
"type": "varchar(30)",
"type": "varchar(255)",
"charset": "utf8",
"collation": "utf8_unicode_ci",
"nullable": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
{
"name": "username",
"type": "varchar(30)",
"type": "varchar(255)",
"nullable": false,
"comment": "The username to log on to the resource."
},
Expand Down
4 changes: 2 additions & 2 deletions configuration/etl/etl_tables.d/storage/staging/usage.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
},
{
"name": "user_name",
"type": "varchar(30)",
"type": "varchar(255)",
"nullable": false,
"comment": "User's system username"
},
{
"name": "pi_name",
"type": "varchar(30)",
"type": "varchar(255)",
"nullable": false,
"comment": "PI's system username"
},
Expand Down

0 comments on commit 3bf9d08

Please sign in to comment.