|
|
|
@ -0,0 +1,21 @@ |
|
|
|
<?php |
|
|
|
|
|
|
|
use Movim\Migration; |
|
|
|
use Illuminate\Database\Schema\Blueprint; |
|
|
|
|
|
|
|
class AddFirebaseauthorizationkeyToConfigurationTable extends Migration |
|
|
|
{ |
|
|
|
public function up() |
|
|
|
{ |
|
|
|
$this->schema->table('configuration', function (Blueprint $table) { |
|
|
|
$table->string('firebaseauthorizationkey')->nullable(); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
public function down() |
|
|
|
{ |
|
|
|
$this->schema->table('configuration', function (Blueprint $table) { |
|
|
|
$table->dropColumn('firebaseauthorizationkey'); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |