| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- class CreateUsersTable extends Migration {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('users', function(Blueprint $table)
- {
- $table->increments('id');
- $table->string('username', 191)->unique();
- $table->string('phone', 191)->unique();
- $table->string('name', 191);
- $table->string('email', 191)->unique();
- $table->string('password', 191);
- $table->string('remember_token', 100)->nullable();
- $table->char('uuid', 36);
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('users');
- }
- }
|