model = new $model(); $schema->createTables(); } foreach (Pluf::factory('IDF_Issue')->getList() as $i) { IDF_Search::index($i); } } function IDF_Migrations_2Search_down($params=null) { $models = array( 'IDF_Search_Occ', ); $db = Pluf::db(); $schema = new Pluf_DB_Schema($db); foreach ($models as $model) { $schema->model = new $model(); $schema->dropTables(); } }