1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
-
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
-
- class CreateUsersTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('users', function (Blueprint $table) {
- $table->bigIncrements('id');
- $table->string('email')->unique();
- $table->string('name')->nullable();
- $table->string('google_id')->nullable();
- $table->unsignedBigInteger('added_by')->nullable();
- $table->rememberToken();
- $table->timestamps();
-
- $table->foreign('added_by')->references('id')->on('users');
- });
- }
-
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('users');
- }
- }
|