modified redirect when not logged in

This commit is contained in:
2021-03-10 22:21:57 +09:00
parent 4f15afb3ce
commit 9feba2916a
6 changed files with 102 additions and 106 deletions

View File

@@ -0,0 +1,65 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAfterActionReportsTables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if(!Schema::hasTable('fc_after_action_reports')) {
Schema::create('fc_after_action_reports', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('fc_id');
$table->string('fc_name');
$table->string('formup_location');
$table->enum('comms', [
'W4RP',
'Brave',
'TEST',
'Other',
]);
$table->string('doctrine');
$table->text('objective');
$table->enum('objective_result', [
'Win',
'Lose',
'Neither',
]);
$table->text('summary');
$table->text('improvements');
$table->text('worked_well');
$table->text('additonal_comments');
$table->timestamps();
});
}
if(!Schema::hasTable('fc_aar_comments')) {
Schema::create('fc_aar_comments', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('report_id');
$table->unsignedBigInteger('character_id');
$table->unsignedBigInteger('character_name');
$table->text('comments');
$table->timestamps();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('fc_aar_comments');
Schema::dropIfExists('fc_after_action_reports');
}
}