-- DB eopbri
use eopbri;
CREATE TABLE IF NOT EXISTS `signature` (
  `imgID` int(11) NOT NULL AUTO_INCREMENT,
  `DocID` bigint(20) DEFAULT NULL,
  `DlcID` int(11) DEFAULT NULL,
  `DrsID` bigint(20) DEFAULT NULL,
  `personId` int(11) NOT NULL DEFAULT '0',
  `imgSource` text,
  PRIMARY KEY (`imgID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;