41 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Engelsystem\Migrations;
 | |
| 
 | |
| use Engelsystem\Database\Migration\Migration;
 | |
| use Illuminate\Database\Schema\Blueprint;
 | |
| 
 | |
| class OauthAddTokens extends Migration
 | |
| {
 | |
|     use Reference;
 | |
| 
 | |
|     /**
 | |
|      * Run the migration
 | |
|      */
 | |
|     public function up()
 | |
|     {
 | |
|         $this->schema->table(
 | |
|             'oauth',
 | |
|             function (Blueprint $table) {
 | |
|                 $table->string('access_token')->nullable()->default(null)->after('identifier');
 | |
|                 $table->string('refresh_token')->nullable()->default(null)->after('access_token');
 | |
|                 $table->dateTime('expires_at')->nullable()->default(null)->after('refresh_token');
 | |
|             }
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Reverse the migration
 | |
|      */
 | |
|     public function down()
 | |
|     {
 | |
|         $this->schema->table(
 | |
|             'oauth',
 | |
|             function (Blueprint $table) {
 | |
|                 $table->dropColumn('access_token');
 | |
|                 $table->dropColumn('refresh_token');
 | |
|                 $table->dropColumn('expires_at');
 | |
|             }
 | |
|         );
 | |
|     }
 | |
| }
 | 
