35 lines
762 B
PHP
35 lines
762 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
||
|
class CreateInvitationsTable extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::create('invitations', function (Blueprint $table) {
|
||
|
$table->string('id')->primary();
|
||
|
$table->integer('team_id')->index();
|
||
|
$table->integer('user_id')->nullable()->index();
|
||
|
$table->string('email');
|
||
|
$table->string('token', 40)->unique();
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::drop('invitations');
|
||
|
}
|
||
|
}
|