Adds the database table.
Description
See also
Source
File: src/db-objects/element-settings/element-setting-manager.php
protected function add_database_table() { $this->db()->add_table( $this->table_name, array( "id int(11) unsigned NOT NULL auto_increment", "element_id int(11) unsigned NOT NULL", "name text NOT NULL", "value text NOT NULL", "PRIMARY KEY (id)", "KEY element_id (element_id)", ) ); }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |