mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
38 lines
870 B
PHP
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');
|
|
}
|
|
}
|