|
@@ -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' => '更新时间',])
|