Hi,
This is structure of the dashboards table
HTML Code:
CREATE TABLE IF NOT EXISTS `dashboards` (
`id` char(36) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
`date_entered` datetime NOT NULL,
`date_modified` datetime NOT NULL,
`modified_user_id` char(36) NOT NULL,
`assigned_user_id` char(36) DEFAULT NULL,
`created_by` char(36) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`description` text,
`content` text,
PRIMARY KEY (`id`),
KEY `idx_dashboard_name` (`name`,`deleted`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Bookmarks