Files
Website/database/migrations/2023_07_19_041445_update_attachments_table.php
2023-07-19 17:04:40 +10:00

37 lines
944 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('attachments', function (Blueprint $table) {
$table->renameColumn('attachable_type', 'addendum_type');
});
Schema::table('attachments', function (Blueprint $table) {
$table->renameColumn('attachable_id', 'addendum_id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('attachments', function (Blueprint $table) {
$table->renameColumn('addendum_type', 'attachable_type');
});
Schema::table('attachments', function (Blueprint $table) {
$table->renameColumn('addendum_id', 'attachable_id');
});
}
};