mocean_sms_abandoned_cart-8.x-1.1/mocean_sms_abandoned_cart.install
mocean_sms_abandoned_cart.install
<?php
function mocean_sms_abandoned_cart_schema() {
$schema['mocean_sms_abandoned_cart'] = [
'description' => 'Stores details of sent alert SMS for abandoned carts',
'fields' => [
'order_id' => [
'type' => 'int',
'not null' => TRUE,
'description' => 'Order id from commerce order',
],
'sent_time' => [
'type' => 'int',
'not null' => TRUE,
'description' => 'Sent time of alert SMS',
],
],
'primary key' => [
'order_id'
],
];
return $schema;
}