mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 04:20:49 +08:00
39 lines
919 B
PHP
39 lines
919 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateNewsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
if (Schema::hasTable('news')) {
|
|
return;
|
|
}
|
|
Schema::create('news', function (Blueprint $table) {
|
|
$table->mediumIncrements('id');
|
|
$table->unsignedMediumInteger('userid')->default(0);
|
|
$table->dateTime('added')->nullable()->index('added');
|
|
$table->text('body')->nullable();
|
|
$table->string('title')->default('');
|
|
$table->enum('notify', ['yes', 'no'])->default('no');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('news');
|
|
}
|
|
}
|