Explorar o código

Merge branch 'dev'

dyjh %!s(int64=6) %!d(string=hai) anos
pai
achega
c48e67eb32

+ 33 - 0
database/migrations/2019_04_18_151500_delete_level_in_album_cat.php

xqd
@@ -0,0 +1,33 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class DeleteLevelInAlbumCat extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('album_cat', function (Blueprint $table) {
+            //
+            $table->dropColumn('level');
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('album_cat', function (Blueprint $table) {
+            //
+        });
+    }
+}