123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateTablePostShare extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('post_share', function (Blueprint $table) {
- $table->bigIncrements('id');
- $table->integer('uid')
- ->index('uid')
- ->comment('用户ID');
- $table->integer('post_id')
- ->default(0)
- ->comment('帖子id');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('post_share');
- }
- }
|