]> BookStack Code Mirror - bookstack/blob - database/migrations/2015_12_09_195748_add_user_avatars.php
MD Editor: Fixed plaintext dark styles, updated npm packages
[bookstack] / database / migrations / 2015_12_09_195748_add_user_avatars.php
1 <?php
2
3 use Illuminate\Database\Migrations\Migration;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Support\Facades\Schema;
6
7 return new class extends Migration
8 {
9     /**
10      * Run the migrations.
11      */
12     public function up(): void
13     {
14         Schema::table('users', function (Blueprint $table) {
15             $table->integer('image_id')->default(0);
16         });
17     }
18
19     /**
20      * Reverse the migrations.
21      */
22     public function down(): void
23     {
24         Schema::table('users', function (Blueprint $table) {
25             $table->dropColumn('image_id');
26         });
27     }
28 };