wp_samo_post_respostas

Static

Stores samo post respostas data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑resposta_codigoint(5)NO
resposta_datahoradatetimeYES
resposta_conteudotextYES
resposta_formularioint(5)YES
resposta_emailenviadovarchar(100)YES
resposta_datahoraenviodatetimeYES
resposta_respostaenviotextYES
resposta_navegadortextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_samo_post_respostas ( resposta_codigo int(5) NOT NULL AUTO_INCREMENT, resposta_datahora datetime DEFAULT NULL, resposta_conteudo text, resposta_formulario int(5) DEFAULT NULL, resposta_emailenviado varchar(100) DEFAULT NULL, resposta_datahoraenvio datetime DEFAULT NULL, resposta_respostaenvio text, resposta_navegador text, PRIMARY KEY (resposta_codigo) ) ENGINE

Safe to delete?

If you have uninstalled SAMO Forms, 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_samo_post_respostas`;

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

Other tables from SAMO Forms