love_php/database/migrations/2019_03_26_112201_create_paases.php
2026-04-02 09:20:51 +08:00

35 lines
749 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePaases extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('paas', function (Blueprint $table) {
$table->increments('id');
$table->string('logo')->nullable()->comment('图标');
$table->string('name')->nullable()->comment('名称');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('paas');
}
}