fanatic/database/migrations/10_create_collective_table.php

38 lines
827 B
PHP
Raw Normal View History

2022-04-22 20:01:30 -07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
2022-04-23 10:57:56 -07:00
Schema::create('collectives', function (Blueprint $table) {
2022-04-22 20:01:30 -07:00
$table->id();
$table->string('name');
$table->string('email')->unique();
2022-04-23 10:57:56 -07:00
$table->string('title');
2022-04-22 20:01:30 -07:00
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
};