mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class AlterTableSubscribersAddPhoneNumberSlackColumns extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('subscribers', function (Blueprint $table) {
|
|
$table->string('email')->nullable()->default(null)->change();
|
|
$table->string('phone_number')->nullable()->default(null)->after('verify_code');
|
|
$table->string('slack_webhook_url')->nullable()->default(null)->after('phone_number');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('subscribers', function (Blueprint $table) {
|
|
$table->dropColumn(['phone_number', 'slack_webhook_url']);
|
|
});
|
|
}
|
|
}
|