12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- use yii\db\Migration;
- /**
- * Class m240924_163254_Agregar_descripcion_en_Inventario
- */
- class m240924_163254_Agregar_descripcion_en_Inventario extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->addColumn('HerramientaInventario', 'descripcion', $this->string(100));
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- $this->dropColumn('HerramientaInventario', 'descripcion');
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "m240924_163254_Agregar_descripcion_en_Inventario cannot be reverted.\n";
- return false;
- }
- */
- }
|