plugins/sys/share/db/sql/tips.sql.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

return '
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT \'\',
  `text` text NOT NULL,
  `type` tinyint(1) NOT NULL DEFAULT \'1\',
  `active` enum(\'1\',\'0\') NOT NULL DEFAULT \'1\',
  `locale` char(7) NOT NULL DEFAULT \'en\',
  PRIMARY KEY (`id`)
';