increments('id'); $table->unsignedInteger('agent_id'); $table->string('url',255)->comment('路径'); $table->unsignedInteger('type')->comment('0 图片 1 视频'); $table->string('oss_key',255)->default(null)->nullable(); $table->string('name',255)->default(null)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('agent_banner'); } }