pushdeer/api/database/migrations/2022_01_09_095031_message_add_push_key.php
2022-01-09 18:03:01 +08:00

33 lines
666 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class MessageAddPushKey extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('push_deer_messages', function (Blueprint $table) {
$table->string('pushkey_name');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('push_deer_messages', function (Blueprint $table) {
$table->dropColumn('pushkey_name');
});
}
}