wp_samo_post_formularios

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑formulario_codigoint(11)NO
formulario_titulovarchar(100)YES
formulario_campostextYES
formulario_campos_backuptextYES
formulario_situacaovarchar(50)YES
formulario_nomevarchar(100)YES
formulario_emailvarchar(100)YES
formulario_emailrespostavarchar(100)YES
formulario_cssvarchar(50)YES
formulario_msg_sucessovarchar(100)YES
formulario_datacriacaodatetimeYES
formulario_autorBIGINT(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