Pterodactyl-Panel/database/migrations/2016_09_07_163017_add_unique_identifier.php

29 lines
597 B
PHP
Raw Normal View History

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddUniqueIdentifier extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::table('services', function (Blueprint $table) {
$table->char('author', 36)->after('id');
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::table('services', function (Blueprint $table) {
$table->dropColumn('author');
});
}
}