wp_samo_post_formularios
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑formulario_codigo | int(11) | NO |
| formulario_titulo | varchar(100) | YES |
| formulario_campos | text | YES |
| formulario_campos_backup | text | YES |
| formulario_situacao | varchar(50) | YES |
| formulario_nome | varchar(100) | YES |
| formulario_email | varchar(100) | YES |
| formulario_emailresposta | varchar(100) | YES |
| formulario_css | varchar(50) | YES |
| formulario_msg_sucesso | varchar(100) | YES |
| formulario_datacriacao | datetime | YES |
| formulario_autor | BIGINT(20) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_samo_post_formularios ( formulario_codigo int(11) NOT NULL AUTO_INCREMENT, formulario_titulo varchar(100) DEFAULT NULL, formulario_campos text, formulario_campos_backup text, formulario_situacao varchar(50) DEFAULT NULL, formulario_nome varchar(100) DEFAULT NULL, formulario_email varchar(100) DEFAULT NULL, formulario_emailresposta varchar(100) DEFAULT NULL, formulario_css varchar(50) DEFAULT NULL, formulario_msg_sucesso varchar(100) DEFAULT NULL, formulario_datacriacao datetime DEFAULT NULL, formulario_autor BIGINT(20) NULL DEFAULT NULL, PRIMARY KEY (formulario_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_formularios`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from SAMO Forms