Skip to content

Commit

Permalink
[DB] Add remember_token to user entity
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed Jan 21, 2019
1 parent e31906f commit 9682787
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 0 additions & 5 deletions database/Entities/User.php
Expand Up @@ -797,9 +797,4 @@ public function getEmailForPasswordReset(){
| END LARAVEL 5 USER PROVIDER INTERFACE METHODS
***************************************************************************/






}
3 changes: 2 additions & 1 deletion database/IXP-Manager.ormdesigner2
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<skipper version="3.2.14.1430" mvc="Without MVC" orm="Doctrine2" name="IXP-Manager" uuid="529b27e3-5e07-443f-9b7a-6a21c58fb543">
<skipper version="3.2.15.1478" mvc="Without MVC" orm="Doctrine2" name="IXP-Manager" uuid="529b27e3-5e07-443f-9b7a-6a21c58fb543">
<module name="\IXP-Manager" local-name="IXP-Manager" namespace="\Entities" local-namespace="Entities" export-format="Doctrine2Xml" export-path="xml" uuid="d5cf68dd-ab20-4e7b-95a9-b83b2a47049f">
<entity name="\Entities\IrrdbAsn" local-name="IrrdbAsn" namespace="\Entities" uuid="4bcd4dff-cf81-432f-9ce6-d4e3e7458c0c">
<field name="id" type="bigint" required="true" unique="true" primary="true" auto-increment="true" uuid="033ed9da-4165-432b-8b57-e21110abe29e"/>
Expand Down Expand Up @@ -1029,6 +1029,7 @@
<field name="username" type="string" size="255" unique="true" uuid="1d5e1545-7815-4067-9bb5-c8286cfe24b5"/>
<field name="password" type="string" size="255" uuid="eab94e07-d600-49ca-88ce-0dd664f19425"/>
<field name="email" type="string" size="255" uuid="7ce655e0-508e-444f-ac26-cb27e349bebf"/>
<field name="remember_token" type="string" size="100" uuid="7e502493-82c6-4c76-acd8-e28026373cba"/>
<field name="authorisedMobile" type="string" size="30" uuid="d36f8a6a-1f67-400e-9fad-33a12ec3d10a">
<orm-attributes>
<attribute name="column">authorisedMobile</attribute>
Expand Down
1 change: 1 addition & 0 deletions database/xml/Entities.User.dcm.xml
Expand Up @@ -8,6 +8,7 @@
<field name="username" type="string" unique="true" length="255" nullable="true"/>
<field name="password" type="string" length="255" nullable="true"/>
<field name="email" type="string" length="255" nullable="true"/>
<field name="remember_token" type="string" length="100" nullable="true"/>
<field name="authorisedMobile" type="string" length="30" nullable="true" column="authorisedMobile"/>
<field name="uid" type="integer" nullable="true"/>
<field name="privs" type="integer" nullable="true"/>
Expand Down

0 comments on commit 9682787

Please sign in to comment.