wp_samo_post_respostas
StaticStores samo post respostas data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑resposta_codigo | int(5) | NO |
| resposta_datahora | datetime | YES |
| resposta_conteudo | text | YES |
| resposta_formulario | int(5) | YES |
| resposta_emailenviado | varchar(100) | YES |
| resposta_datahoraenvio | datetime | YES |
| resposta_respostaenvio | text | YES |
| resposta_navegador | text | YES |
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