migration = $factory; } public function getMigrations(Updater $updater) { return array( $this->migration->db->changeColumnType('site', 'ts_created', 'TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL'), $this->migration->db->dropColumn('log_visit', 'config_color_depth'), // 0.2.12 [673] // Note: requires INDEX privilege $this->migration->db->dropIndex('log_action', 'index_idaction') ); } public function doUpdate(Updater $updater) { $updater->executeMigrations(__FILE__, $this->getMigrations($updater)); } }