Commit 8f08374a authored by yinxiaoling's avatar yinxiaoling

主叫号码固定

parent b02a5656
...@@ -39,7 +39,7 @@ trait Tool ...@@ -39,7 +39,7 @@ trait Tool
} }
} }
public function getAllowCallNumber(){ public function getAllowCallNumber(){
return [90002,80006]; return [90002];
} }
......
...@@ -79,7 +79,7 @@ class DatabaseSeeder extends Seeder ...@@ -79,7 +79,7 @@ class DatabaseSeeder extends Seeder
$table->unsignedSmallInteger('is_created')->default(0)->comment('是否新建任务(0未建 1已建)'); $table->unsignedSmallInteger('is_created')->default(0)->comment('是否新建任务(0未建 1已建)');
$table->unsignedSmallInteger('created_fail_number')->default(0)->comment('任务创建失败尝试次数'); $table->unsignedSmallInteger('created_fail_number')->default(0)->comment('任务创建失败尝试次数');
$table->string('create_fail_reason',500)->comment('记录接口返回失败原因'); $table->string('create_fail_reason',500)->nullable()->comment('记录接口返回失败原因');
$table->timestamp('created_at')->nullable(); $table->timestamp('created_at')->nullable();
}); });
//加索引 //加索引
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment