wp_p3dlite_infills

Verified

Stores p3dlite infills data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_p3dlite_infills` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `status` tinyint(1) NOT NULL DEFAULT '1',\n  `name` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `description` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `photo` varchar(2048) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `infill` float NOT NULL DEFAULT '100',\n  `price` varchar(256) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',\n  `price_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pct',\n  `price1` varchar(256) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',\n  `price_type1` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pct',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled 3DPrint Lite, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_p3dlite_infills`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from 3DPrint Lite