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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

return '
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `title` text NOT NULL,
  `desc` text NOT NULL,
  `group_id` smallint(3) NOT NULL DEFAULT \'0\',
  `group_name` varchar(255) NOT NULL DEFAULT \'\',
  `type` varchar(255) NOT NULL DEFAULT \'\',
  `keyword` text NOT NULL,
  `value` text NOT NULL,
  `default` text NOT NULL,
  `extra` text NOT NULL,
  `eval_php` text NOT NULL,
  `position` smallint(3) NOT NULL DEFAULT \'0\',
  `display` tinyint(1) NOT NULL DEFAULT \'0\',
  PRIMARY KEY (`id`)
';