NF_Database_Migrations_ObjectMeta
The Ninja Forms NF Database Migrations ObjectMeta class.
Defined (1)
The class is defined in the following location(s).
- /includes/Database/Migrations/ObjectMeta.php
- class NF_Database_Migrations_ObjectMeta extends NF_Abstracts_Migration
- {
- public function __construct()
- {
- parent::__construct(
- 'nf3_object_meta',
- 'nf_migration_create_table_object_meta'
- );
- }
- public function run()
- {
- $query = "CREATE TABLE IF NOT EXISTS $this->table_name (
- `id` int NOT NULL AUTO_INCREMENT,
- `parent_id` int NOT NULL,
- `key` longtext NOT NULL,
- `value` longtext,
- UNIQUE KEY (`id`)
- ) $this->charset_collate;";
- dbDelta( $query );
- }
- }