BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
database
/
migrations
📤 Upload
📝 New File
📁 New Folder
Close
Editing: 2024_11_04_101015_update_permission_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Support\Facades\DB; return new class extends Migration { /** * Run the migrations. */ public function up(): void { DB::table('users') ->where('type', 'admin') ->update(['type' => 'super_admin']); } /** * Reverse the migrations. */ public function down(): void { // } };
Save
Cancel