mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-25 02:22:36 +01:00
3bf5a71802
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
28 lines
587 B
PHP
28 lines
587 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class RenamePermissionsColumn extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::table('permissions', function (Blueprint $table) {
|
|
$table->renameColumn('permissions', 'permission');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::table('permissions', function (Blueprint $table) {
|
|
});
|
|
}
|
|
}
|