- <?php
-
-
- use yii\db\Migration;
-
-
- class m230823_072853_delete_development_order_status extends Migration
- {
-
-
- public function safeUp()
- {
- $this->dropTable('development');
- $this->dropTable('development_priority');
- $this->dropTable('order_status');
- }
-
-
-
- public function safeDown()
- {
- echo "m230823_072853_delete_development_order_status cannot be reverted.\n";
-
- return false;
- }
- }
|