Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. ....
  3. class CreateUsersTable extends Migration
  4. {
  5.  
  6. public function up()
  7. {
  8. Schema::create('users', function (Blueprint $table) {
  9. $table->increments('id');
  10. $table->string('name');
  11. $table->string('email')->unique();
  12. $table->string('password');
  13. $table->timestamps();
  14. });
  15. }
  16. ....
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement