瀏覽代碼

Se agrego migracion para agregar columna tipo en tabla vehiculo

Jose Cienfuegos 9 月之前
父節點
當前提交
96558aef75
共有 1 個文件被更改,包括 26 次插入0 次删除
  1. 26 0
      migrations/m240719_013111_columna_tipo_vehiculo.php

+ 26 - 0
migrations/m240719_013111_columna_tipo_vehiculo.php

@@ -0,0 +1,26 @@
+<?php
+
+use yii\db\Migration;
+
+/**
+ * Class m240719_013111_columna_tipo_vehiculo
+ */
+class m240719_013111_columna_tipo_vehiculo extends Migration
+{
+    /**
+     * {@inheritdoc}
+     */
+    public function safeUp()
+    {
+        $this->addColumn("Vehiculo", "tipo", $this->string(100));
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function safeDown()
+    {
+        $this->dropColumn("Vehiculo", "tipo");
+    }
+
+}