<?php if ( ! defined( 'ABSPATH' ) ) exit;
class NF_Database_Migrations_Relationships extends NF_Abstracts_Migration
* Constructor method for the NF_Database_Migrations_Relationships class.
public function __construct()
'nf_migration_create_table_relationships'
* Function to run our initial migration.
$query = "CREATE TABLE IF NOT EXISTS {$this->table_name()} (
`id` int NOT NULL AUTO_INCREMENT,
`child_type` longtext NOT NULL,
`parent_id` int NOT NULL,
`parent_type` longtext NOT NULL,
) {$this->charset_collate( true )};";
* Function to ensure proper collation of the relationships table.
public function cache_collate_objects()
$query = "ALTER TABLE {$this->table_name()}
MODIFY `child_type` longtext {$this->charset_collate()} NOT NULL,
MODIFY `parent_type` longtext {$this->charset_collate()} NOT NULL;";