Commit ac30d321 by lmf

遗漏文件增加

parent 28366c9f
<?php
/**
* @author Aitoc Team
* @copyright Copyright (c) 2022 Aitoc (https://www.aitoc.com)
* @package Aitoc_Core
*/
/**
* Copyright © Aitoc. All rights reserved.
*/
namespace Aitoc\Core\Api;
interface ColumnInterface
{
const AITOC_NOTIFICATION_FIELD = 'aitoc_notification';
}
<?xml version="1.0"?>
<!--
/**
* @author Aitoc Team
* @copyright Copyright (c) 2022 Aitoc (https://www.aitoc.com)
* @package Aitoc_Core
*/
-->
<!--
~ Copyright © Aitoc. All rights reserved.
-->
<schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
<table name="adminnotification_inbox" resource="default" engine="innodb">
<column xsi:type="smallint" name="aitoc_notification" unsigned="true" nullable="false" default="0" comment="Aitoc Notification"/>
</table>
</schema>
{
"adminnotification_inbox": {
"column": {
"aitoc_notification": true
}
}
}
\ No newline at end of file
<?xml version="1.0"?>
<!--
/**
* @author Aitoc Team
* @copyright Copyright (c) 2022 Aitoc (https://www.aitoc.com)
* @package Aitoc_Smtp
*/
-->
<!--
/**
* Copyright © Aitoc. All rights reserved.
*/
-->
<schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
<table name="aitoc_smtp_log" resource="default" engine="innodb" comment="Aitoc SMTP Log">
<column xsi:type="int" name="log_id" unsigned="true" nullable="false" identity="true" comment="Log Id"/>
<column xsi:type="datetime" name="created_at" nullable="true" comment="Created At"/>
<column xsi:type="text" name="subject" nullable="false" />
<column xsi:type="text" name="email_body" nullable="false" />
<column xsi:type="text" name="sender_email" nullable="false" />
<column xsi:type="text" name="recipient_email" nullable="false" />
<column xsi:type="text" name="cc" nullable="true" />
<column xsi:type="text" name="bcc" nullable="true" />
<column xsi:type="smallint" name="status" nullable="false" />
<column xsi:type="text" name="status_message" nullable="true" />
<constraint xsi:type="primary" referenceId="PRIMARY">
<column name="log_id"/>
</constraint>
</table>
</schema>
{
"aitoc_smtp_log": {
"column": {
"log_id": true,
"created_at": true,
"subject": true,
"email_body": true,
"sender_email": true,
"recipient_email": true,
"cc": true,
"bcc": true,
"status": true,
"status_message": true
},
"constraint": {
"PRIMARY": true
}
}
}
\ No newline at end of file
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