12345678910111213141516171819202122232425262728293031 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class AddReferences extends Migration
- {
- /**
- * 外键约束
- */
- public function up()
- {
- Schema::table('user_infos', function (Blueprint $table) {
- // 联动删除
- $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::table('user_infos', function (Blueprint $table) {
- $table->dropForeign(['user_id']);
- });
- }
- }
|