Semantic MediaWiki/data/smw atts2

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Semantic MediaWiki‎ | data
Revision as of 17:00, 22 January 2012 by Woozle (talk | contribs) (Created page with "==About== * ''Version''': 1.7 ==SQL== <mysql>CREATE TABLE `smw_atts2` ( `s_id` int(8) unsigned NOT NULL, `p_id` int(8) unsigned NOT NULL, `value_xsd` varbinary(255) DEFA...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Version': 1.7

SQL

<mysql>CREATE TABLE `smw_atts2` (

 `s_id` int(8) unsigned NOT NULL,
 `p_id` int(8) unsigned NOT NULL,
 `value_xsd` varbinary(255) DEFAULT NULL,
 `value_num` double DEFAULT NULL,
 KEY `s_id` (`s_id`),
 KEY `p_id` (`p_id`),
 KEY `value_num` (`value_num`),
 KEY `value_xsd` (`value_xsd`)

) ENGINE=InnoDB DEFAULT CHARSET=binary;</mysql>