Skip to content

Instantly share code, notes, and snippets.

@manchumahara
Created November 12, 2013 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manchumahara/7426784 to your computer and use it in GitHub Desktop.
Save manchumahara/7426784 to your computer and use it in GitHub Desktop.
custom field plan for joomla
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