Element_Choice_Manager::add_database_table()

Adds the database table.

Description

Source

File: src/db-objects/element-choices/element-choice-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",
			"field char(100) NOT NULL default ''",
			"section char(100) NOT NULL",
			"value text NOT NULL",
			"sort int(11) unsigned NOT NULL default '0'",
			"PRIMARY KEY  (id)",
			"KEY element_id (element_id)",
		) );
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.