migrations.php 260 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <?php if ( ! defined( 'ABSPATH' ) ) { exit; } class NF_FU_Database_Migrations extends NF_Database_Migrations { protected $migrations = array(); public function __construct() { $this->migrations['uploads'] = new NF_FU_Database_Migrations_Uploads(); } }