pelican-panel-banquise/database/migrations/2017_09_10_225749_RenameTasksTableForStructureRefactor.php
2024-03-19 21:03:50 -04:00

24 lines
392 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::rename('tasks', 'tasks_old');
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::rename('tasks_old', 'tasks');
}
};