wp_last_done

Static

Stores last done data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10)NO
id_last_post_doneint(10)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_last_done (id int(10) NOT NULL AUTO_INCREMENT, id_last_post_done int(10), PRIMARY KEY (id));

Safe to delete?

If you have uninstalled Social Media Auto Post and Scheduling contents, 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_last_done`;

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

Other tables from Social Media Auto Post and Scheduling contents