You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -130,3 +117,18 @@ To scan the tree 'sourcePath' to generate files default for labels used in the c
130
117
To change target lenguage for example to spanish use
131
118
```Yii::$app->language = 'es';```
132
119
120
+
121
+
### Applying migrations
122
+
123
+
The migrations can be found in ```@console/migrations``` . The initial migration named ```m130524_201442_init.php``` contains the user table creation script, including the following aditions to
124
+
yii2 base user table:
125
+
```
126
+
id string(36) - v4 UUID
127
+
access_token string(32) - user access token
128
+
refresh_token string(32) - used to refresh the access token
129
+
created_at int(13) - Time of creation
130
+
updated_at int(13) - Time of creation
131
+
created_by string(13) - id of the user that created the record
132
+
updated_by string(13) - id of the last user that updated the record
0 commit comments