32 lines
		
	
	
		
			603 B
		
	
	
	
		
			PHP
		
	
	
	
		
		
			
		
	
	
			32 lines
		
	
	
		
			603 B
		
	
	
	
		
			PHP
		
	
	
	
|  | <?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'); | ||
|  |         }); | ||
|  |     } | ||
|  | } |