query('CREATE TABLE `' . PAAM_DB_SKUS . '` ( `sku_id` int(10) unsigned NOT NULL auto_increment, `post_id` int(10) unsigned NOT NULL, `sku_name` varchar(45) NOT NULL, `sku_description` text, `sku_thumbnail` varchar(500), PRIMARY KEY (`sku_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;'); } /** * Create assets table */ function paam_install_assets_db() { global $wpdb; $wpdb->query('CREATE TABLE `' . PAAM_DB_ASSETS . '` ( `asset_id` int(10) unsigned NOT NULL auto_increment, `sku_id` int(10) unsigned NOT NULL, `asset_title` varchar(500), `asset_filename` varchar(500), PRIMARY KEY (`asset_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;'); } register_activation_hook(PAAM_PLUGINDIR . 'asset-manager.php', 'paam_install'); /***************************************************** * Deactivation *****************************************************/ function paam_uninstall() { global $wpdb; $wpdb->query('DROP TABLE IF EXISTS ' . PAAM_DB_SKUS . ''); $wpdb->query('DROP TABLE IF EXISTS ' . PAAM_DB_ASSETS . ''); // Intentionally not deleting uploads (I figured there is the change that // users may not have kept copies of these slides if they need them later // and the disk space used will be miniscule. } // uncomment next line to drop tables used for this plugin upon deactivation //register_deactivation_hook(PAAM_PLUGINDIR . 'assets-manager.php', 'paam_uninstall');