Created
November 12, 2013 07:11
-
-
Save manchumahara/7426784 to your computer and use it in GitHub Desktop.
custom field plan for joomla
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE IF NOT EXISTS `wpidea_cbcustompostmeta` ( | |
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`component` varchar(255) DEFAULT NULL, | |
`meta_key` varchar(255) DEFAULT NULL, | |
`meta_value` longtext, | |
PRIMARY KEY (`meta_id`), | |
KEY `post_id` (`post_id`), | |
KEY `meta_key` (`meta_key`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment