plugins/shop/share/db/sql/shop_basket.sql.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

return '
  `id` char(32) NOT NULL,
  `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `data` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ts` (`ts`)
';