Files
nexusphp/database/migrations/2021_06_08_113437_create_funvotes_table.php
2021-06-08 20:43:47 +08:00

35 lines
796 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()
{
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');
}
}