feedbacks tábla migráció létrehozása
This commit is contained in:
picquiz/database/migrations
@ -21,7 +21,6 @@ return new class extends Migration
|
||||
$table->boolean('hit');
|
||||
$table->foreign('game_id')->references('id')->on('games');
|
||||
$table->foreign('puzzle_id')->references('id')->on('puzzles');
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,36 @@
|
||||
<?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()
|
||||
{
|
||||
Schema::create('feedbacks', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
$table->unsignedBigInteger('creator');
|
||||
$table->string('title');
|
||||
$table->longText('message');
|
||||
$table->boolean('read')->default(False);
|
||||
$table->foreign('creator')->references('id')->on('users');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('feedbacks');
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user