123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateUserInvitesTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('user_invites', function (Blueprint $table) {
- $table->bigIncrements('id');
- $table->bigInteger('user_id')->unsigned()->index();
- $table->bigInteger('profile_id')->unsigned()->index();
- $table->string('email')->unique()->index();
- $table->text('message')->nullable();
- $table->string('key');
- $table->string('token');
- $table->timestamp('valid_until')->nullable();
- $table->timestamp('used_at')->nullable()->index();
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('user_invites');
- }
- }
|