123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- use yii\db\Migration;
- /**
- * Class m240816_231235_obras_clave_unique
- */
- class m240816_231235_obras_clave_unique extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->addColumn('Obra', 'clave', $this->string());
- $this->createIndex(
- 'id-claveObra-unique',
- 'Obra',
- 'clave',
- true
- );
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- $this->dropIndex(
- 'id-claveObra-unique',
- 'Obra'
- );
- $this->dropColumn('Obra', 'clave');
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "m240816_231235_obras_clave_unique cannot be reverted.\n";
- return false;
- }
- */
- }
|