Guest User

Untitled

a guest
Aug 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public function up()
  2. {
  3. Schema::create('users', function (Blueprint $table) {
  4. $table->increments('id');
  5. $table->string('name');
  6. $table->string('email')->unique();
  7. $table->string('password');
  8. $tabke->string('api_token'); // Add the length of your token
  9. $table->rememberToken();
  10. $table->timestamps();
  11. });
  12. }
Add Comment
Please, Sign In to add comment