Files
nexusphp/database/migrations/2021_06_08_113437_create_funvotes_table.php
2021-06-09 15:11:02 +08:00

38 lines
870 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFunvotesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if (Schema::hasTable('funvotes')) {
return;
}
Schema::create('funvotes', function (Blueprint $table) {
$table->unsignedMediumInteger('funid');
$table->unsignedMediumInteger('userid');
$table->dateTime('added')->nullable();
$table->enum('vote', ['fun', 'dull'])->default('fun');
$table->primary(['funid', 'userid']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('funvotes');
}
}