mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-11 19:35:37 +00:00
Added custom user avatars
This commit is contained in:
parent
db3acabc66
commit
8f7c642f32
16 changed files with 230 additions and 68 deletions
database/migrations
31
database/migrations/2015_12_09_195748_add_user_avatars.php
Normal file
31
database/migrations/2015_12_09_195748_add_user_avatars.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class AddUserAvatars extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->integer('image_id')->default(0);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropColumn('image_id');
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue