芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/airport-back/vendor/yiisoft/yii2/db/MigrationInterface.php
* @since 2.0 */ interface MigrationInterface { /** * This method contains the logic to be executed when applying this migration. * @return bool return a false value to indicate the migration fails * and should not proceed further. All other return values mean the migration succeeds. */ public function up(); /** * This method contains the logic to be executed when removing this migration. * The default implementation throws an exception indicating the migration cannot be removed. * @return bool return a false value to indicate the migration fails * and should not proceed further. All other return values mean the migration succeeds. */ public function down(); }