Skip to content

Commit

Permalink
Increase password column size
Browse files Browse the repository at this point in the history
  • Loading branch information
0m3r committed Apr 5, 2023
1 parent 15bcd28 commit 3df9752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<column xsi:type="smallint" name="type" padding="6" unsigned="false" nullable="false" identity="false" default="1" comment="Type"/>
<column xsi:type="varchar" name="email" nullable="false" length="45" default="" comment="email from"/>
<column xsi:type="varchar" name="user" nullable="false" length="45" default="" comment="User"/>
<column xsi:type="varchar" name="password" nullable="false" length="45" default="" comment="Password"/>
<column xsi:type="varchar" name="password" nullable="false" length="128" default="" comment="Password"/>
<column xsi:type="varchar" name="host" nullable="false" length="128" default="" comment="Host"/>
<column xsi:type="smallint" name="port" padding="5" unsigned="true" nullable="false" identity="false" default="110" comment="Port"/>
<column xsi:type="smallint" name="secure" padding="5" unsigned="true" nullable="false" identity="false" default="0" comment="Secure"/>
Expand Down

0 comments on commit 3df9752

Please sign in to comment.