|
|
@@ -13,7 +13,7 @@ class CreateWMSReflectPackageTable extends Migration
|
|
|
*/
|
|
|
public function up()
|
|
|
{
|
|
|
- Schema::create('w_m_s_reflect_package', function (Blueprint $table) {
|
|
|
+ Schema::create('w_m_s_reflect_packages', function (Blueprint $table) {
|
|
|
$table->bigIncrements('id');
|
|
|
$table->string('TASKID',30)->unique()->comment('任务号');
|
|
|
$table->string('Orderno',30)->unique()->comment('WMS订单号');
|
|
|
@@ -37,6 +37,6 @@ class CreateWMSReflectPackageTable extends Migration
|
|
|
*/
|
|
|
public function down()
|
|
|
{
|
|
|
- Schema::dropIfExists('w_m_s_reflect_package');
|
|
|
+ Schema::dropIfExists('w_m_s_reflect_packages');
|
|
|
}
|
|
|
}
|