increments('id'); $table->integer('property_id')->length(10)->nullable(); $table->integer('c_id')->length(10); $table->text('title'); $table->string('pic')->length(255); $table->text('intro'); $table->string('content'); $table->smallInteger('sort'); $table->integer('addtime')->length(10); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('treat'); } }