|
|
|
@ -20,7 +20,7 @@ return new class extends Migration {
|
|
|
|
// 邮箱
|
|
|
|
// 邮箱
|
|
|
|
$table->string('email')->nullable()->comment('邮箱');
|
|
|
|
$table->string('email')->nullable()->comment('邮箱');
|
|
|
|
// 状态
|
|
|
|
// 状态
|
|
|
|
$table->tinyInteger('status')->nullable()->comment('状态0:待发送1:成功 2:失败');
|
|
|
|
$table->tinyInteger('status')->nullable()->default(0)->comment('状态0:待发送1:成功 2:失败');
|
|
|
|
// 发送时间
|
|
|
|
// 发送时间
|
|
|
|
$table->dateTime('send_time')->nullable()->comment('发送时间');
|
|
|
|
$table->dateTime('send_time')->nullable()->comment('发送时间');
|
|
|
|
$table->timestamps();
|
|
|
|
$table->timestamps();
|
|
|
|
|