fanatic/database/migrations/01_create_collectives_table.php

34 lines
854 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 {
2022-04-22 20:01:30 -07:00
/**
* Run the migrations.
*/
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();
2022-04-23 16:25:16 -07:00
$table->rememberToken();
$table->timestamps(6);
2022-04-22 20:01:30 -07:00
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at', 6)->nullable();
$table->string('title');
2022-04-22 20:01:30 -07:00
$table->string('password');
$table->integer('per_page')->unsigned()->default(15);
2022-04-22 20:01:30 -07:00
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::dropIfExists('users');
}
};