Explorar o código

Merge pull request #772 from pixelfed/frontend-ui-refactor

Frontend ui refactor
daniel %!s(int64=6) %!d(string=hai) anos
pai
achega
dcd4cc30f8
Modificáronse 2 ficheiros con 35 adicións e 1 borrados
  1. 1 1
      README.md
  2. 34 0
      database/migrations/2019_01_11_005556_update_profiles_table.php

+ 1 - 1
README.md

@@ -18,7 +18,7 @@ testing and development.
 
 ## Requirements
  - PHP >= 7.1.3 < 7.3 (7.2.x recommended for stable version)
- - MySQL >= 5.7, Postgres (MariaDB and sqlite are not supported yet)
+ - MySQL >= 5.7 (Postgres, MariaDB and sqlite are not supported)
  - Redis
  - Composer
  - GD or ImageMagick

+ 34 - 0
database/migrations/2019_01_11_005556_update_profiles_table.php

@@ -0,0 +1,34 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class UpdateProfilesTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('profiles', function (Blueprint $table) {
+            $table->boolean('unlisted')->default(false)->index()->after('bio');
+            $table->boolean('cw')->default(false)->index()->after('unlisted');
+            $table->boolean('no_autolink')->default(false)->index()->after('cw');
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        $table->dropColumn('unlisted');
+        $table->dropColumn('cw');
+        $table->dropColumn('no_autolink');
+    }
+}