1Schema::table('users', function($table)
2{
3 $table->create();
4 $table->increments('id');
5 $table->string('username');
6 $table->string('email');
7 $table->string('phone')->nullable();
8 $table->text('about');
9 $table->timestamps();
10});
11