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
Copy file name to clipboardExpand all lines: README.md
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,27 +64,31 @@ the Eloquent `User` model.
64
64
65
65
### Migration
66
66
67
-
Prior to using this package, the table representing the user must be updated with two new columns, `verified` and `verification_token`. This change will be done by the migrations included with this package.
67
+
The table representing the user must be updated with two new columns, `verified` and `verification_token`.
68
+
This update will be performed by the migrations included with this package.
68
69
69
70
**It is mandatory that the two columns are on the same table where the user's e-mail is stored.**
71
+
**Please make sure you do not already have those fields on your user table.**
70
72
71
-
The migration file this package ships with will be included when you run:
73
+
Run the following command to migrate (all) the migrations, including the
74
+
migration(s) provided by this package:
72
75
73
76
```
74
77
php artisan migrate
75
78
```
76
79
77
-
If you wish to just run the migrations from this package, run the following command.
80
+
If you wish to only run the migration(s) from this package, run the following command:
The package tries to guess your `user` table by checking what is set in the auth providers users settings. If this key is not found, the default `App\User` will be used to get the table name.
86
+
The package tries to guess your `user` table by checking what is set in the auth providers users settings.
87
+
If this key is not found, the default `App\User` will be used to get the table name.
84
88
85
-
The migration adds a `verification_token` and a `verified` field to the user table. Please make sure you do not already have those fields on your user table.
89
+
The migration adds a `verification_token` and a `verified` field to the user table.
86
90
87
-
To customize the migration to your needs, publish it with the following command:
91
+
To customize the migration(s) to your needs, publish them with the following command:
0 commit comments