wp_ald_posts

Static

Stores ald posts data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint unsignedYES
post_authorbigint unsignedNO
post_datedatetimeNO
post_date_gmtdatetimeNO
post_contentlongtextNO
post_titletextNO
post_excerpttextNO
post_statusvarchar(20)NO
comment_statusvarchar(20)NO
ping_statusvarchar(20)NO
post_passwordvarchar(255)NO
post_namevarchar(200)NO
to_pingtextNO
pingedtextNO
post_modifieddatetimeNO
post_modified_gmtdatetimeNO
post_content_filteredlongtextNO
post_parentbigint unsignedNO
guidvarchar(255)NO
menu_orderintNO
post_typevarchar(20)NO
post_mime_typevarchar(100)NO
comment_countbigintNO
ald_post_idbigint(20) unsignedNO
meta_keyvarchar(255)YES
meta_valuelongtextYES

CREATE TABLE Statement

create table if not exists wp_ald_posts ( ID bigint unsigned auto_increment primary key, post_author bigint unsigned default 0 not null, post_date datetime default '0000-00-00 00:00:00' not null, post_date_gmt datetime default '0000-00-00 00:00:00' not null, post_content longtext not null, post_title text not null, post_excerpt text not null, post_status varchar(20) default 'publish' not null, comment_status varchar(20) default 'open' not null, ping_status varchar(20) default 'open' not null, post_password varchar(255) default '' not null, post_name varchar(200) default '' not null, to_ping text not null, pinged text not null, post_modified datetime default '0000-00-00 00:00:00' not null, post_modified_gmt datetime default '0000-00-00 00:00:00' not null, post_content_filtered longtext not null, post_parent bigint unsigned default 0 not null, guid varchar(255) default '' not null, menu_order int default 0 not null, post_type varchar(20) default 'post' not null, post_mime_type varchar(100) default '' not null, comment_count bigint default 0 not null, KEY post_name (post_name($max_index_length)), KEY type_status_date (post_type,post_status,post_date,ID), KEY post_parent (post_parent), KEY post_author (post_author) ) {$collate}"; $query_meta = "create table if not exists wp_ald_postmeta ( meta_id bigint(20) unsigned NOT NULL auto_increment, ald_post_id bigint(20) unsigned NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (meta_id), KEY ald_post_id (ald_post_id), KEY meta_key (meta_key($max_index_length)) ) {$collate}"; $wpdb->query( $query );

Safe to delete?

If you have uninstalled ALD – Dropshipping and Fulfillment for AliExpress and WooCommerce, 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_ald_posts`;

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

Other tables from ALD – Dropshipping and Fulfillment for AliExpress and WooCommerce