|
@@ -1,32 +0,0 @@
|
|
-<?php
|
|
|
|
-
|
|
|
|
-use Illuminate\Support\Facades\Schema;
|
|
|
|
-use Illuminate\Database\Schema\Blueprint;
|
|
|
|
-use Illuminate\Database\Migrations\Migration;
|
|
|
|
-
|
|
|
|
-class UpdateProductIdCmsSubjectProductTable extends Migration
|
|
|
|
-{
|
|
|
|
- /**
|
|
|
|
- * Run the migrations.
|
|
|
|
- *
|
|
|
|
- * @return void
|
|
|
|
- */
|
|
|
|
- public function up()
|
|
|
|
- {
|
|
|
|
- Schema::table('cms_subject_product', function (Blueprint $table) {
|
|
|
|
- $table->integer('product_id')->comment('商品ID')->change();
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Reverse the migrations.
|
|
|
|
- *
|
|
|
|
- * @return void
|
|
|
|
- */
|
|
|
|
- public function down()
|
|
|
|
- {
|
|
|
|
- Schema::table('cms_subject_product', function (Blueprint $table) {
|
|
|
|
- $table->dropColumn(['product_id']);
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
-}
|
|
|