1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| `id` int(11) NOT NULL AUTO_INCREMENT,
`catid` int(11) NOT NULL DEFAULT '1',
`dmname` text NOT NULL,
`dmdescription` longtext,
`dmdate_published` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`dmowner` int(4) NOT NULL DEFAULT '-1',
`dmfilename` text NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT '0',
`dmurl` text,
`dmcounter` int(11) DEFAULT '0',
`checked_out` int(11) NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`approved` tinyint(1) NOT NULL DEFAULT '0',
`dmthumbnail` text,
`dmlastupdateon` datetime DEFAULT '0000-00-00 00:00:00',
`dmlastupdateby` int(5) NOT NULL DEFAULT '-1',
`dmsubmitedby` int(5) NOT NULL DEFAULT '-1',
`dmmantainedby` int(5) DEFAULT '0',
`dmlicense_id` int(5) DEFAULT '0',
`dmlicense_display` tinyint(1) NOT NULL DEFAULT '0',
`access` int(11) unsigned NOT NULL DEFAULT '0',
`attribs` text NOT NULL, |
Partager