string('ID', 50)->comment('委託編號'); $table->dateTime('negotiationDate')->comment('協商日期'); $table->string('negotiator', 50)->comment('協商者'); $table->date('deliveryDate')->comment('交稿日期'); $table->date('publishDate')->comment('發佈日期'); $table->text('description', 65535)->nullable()->comment('協商說明'); $table->primary(['ID','negotiationDate']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('FlightNegotiation'); } }