{"slug":"lukacodes-easy-contact-form","name":"Easy Contact Form by LukaCodes","description":"A beautiful drag & drop contact form builder with optional SMTP integration, dark mode support, auto-reply emails, and spam protection.","author":"LukaCodes","active_installs":0,"version":"0.6.2","wp_org_url":"https://wordpress.org/plugins/lukacodes-easy-contact-form/","is_closed":false,"cleanup":{"has_uninstall_hook":true,"drops_tables_on_uninstall":true,"deletes_options_on_uninstall":true},"tables":[{"table_name":"lecf_forms","full_table_name":"wp_lecf_forms","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"high","columns":[{"name":"id","type":"bigint(20)","nullable":false,"primary_key":true},{"name":"title","type":"varchar(255)","nullable":false,"primary_key":false},{"name":"fields","type":"longtext","nullable":false,"primary_key":false},{"name":"settings","type":"longtext","nullable":false,"primary_key":false},{"name":"status","type":"varchar(20)","nullable":false,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false},{"name":"updated_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE IF NOT EXISTS wp_lecf_forms ( id bigint(20) NOT NULL AUTO_INCREMENT, title varchar(255) NOT NULL DEFAULT '', fields longtext NOT NULL, settings longtext NOT NULL, status varchar(20) NOT NULL DEFAULT 'active', created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status (status) ) {$collate};\" );"},{"table_name":"lecf_submissions","full_table_name":"wp_lecf_submissions","description":"Stores form submissions and user-entered data.","detection_method":"static","confidence":"high","columns":[{"name":"id","type":"bigint(20)","nullable":false,"primary_key":true},{"name":"form_id","type":"bigint(20)","nullable":false,"primary_key":false},{"name":"data","type":"longtext","nullable":false,"primary_key":false},{"name":"ip_address","type":"varchar(45)","nullable":false,"primary_key":false},{"name":"user_agent","type":"text","nullable":false,"primary_key":false},{"name":"status","type":"varchar(20)","nullable":false,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE IF NOT EXISTS wp_lecf_submissions ( id bigint(20) NOT NULL AUTO_INCREMENT, form_id bigint(20) NOT NULL DEFAULT 0, data longtext NOT NULL, ip_address varchar(45) NOT NULL DEFAULT '', user_agent text NOT NULL, status varchar(20) NOT NULL DEFAULT 'new', created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY form_id (form_id), KEY status (status) ) {$collate};\" );"}],"table_count":2}