tongshanglei 2 years ago
parent
commit
6af33ce59c

+ 2 - 0
catch/sms/database/migrations/20210113164747_sms_send_log.php

@@ -33,6 +33,8 @@ class SmsSendLog extends Migrator
         $table->addColumn('recipient', 'string', ['limit' => 255,'null' => true,'signed' => true,'comment' => '接收人',])
 			->addColumn('content', 'text', ['limit' => MysqlAdapter::TEXT_REGULAR,'null' => false,'signed' => true,'comment' => '',])
 			->addColumn('sent_result', 'string', ['limit' => 255,'null' => true,'signed' => true,'comment' => '发送结果',])
+			->addColumn('type', 'string', ['limit' => 32,'null' => true,'signed' => true,'comment' => '类型',])
+
 			->addColumn('creator_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建人ID',])
 			->addColumn('created_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建时间',])
 			->addColumn('updated_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '更新时间',])

+ 1 - 0
catch/sms/model/SmsSendLog.php

@@ -18,6 +18,7 @@ class SmsSendLog extends Model
           'content',
          // 结果
          'sent_result',
+         'type',
          // 创建人ID
          'creator_id',
          // 创建时间