| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- /**
- * Class CreateUsedImgsTable.
- */
- class CreateUsedImgsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('used_imgs', function(Blueprint $table) {
- $table->increments('id');
- $table->integer('used_id')->default(0)->index('used_id')->comment('闲置商品ID');
- $table->string('used_imgs')->comment('闲置商品照片');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('used_imgs');
- }
- }
|