Browse Source

Add migration

Daniel Supernault 4 years ago
parent
commit
9051c1f998

+ 34 - 0
database/migrations/2021_01_25_011355_add_cdn_url_to_avatars_table.php

@@ -0,0 +1,34 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class AddCdnUrlToAvatarsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('avatars', function (Blueprint $table) {
+            $table->string('cdn_url')->unique()->index()->nullable();
+            $table->dropColumn('thumb_path');
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('avatars', function (Blueprint $table) {
+            $table->dropColumn('cdn_url');
+            $table->string('thumb_path')->nullable();
+        });
+    }
+}