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

36 lines
797 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMoments extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('moments', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->text('content')->nullable()->comment('内容');
$table->text('photos')->nullable()->comment('照片');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('moments');
}
}