These migrations... work?? 🐋
This commit is contained in:
parent
1873c1e9b9
commit
07965d0ce7
6 changed files with 173 additions and 80 deletions
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class RenameTasksTableForStructureRefactor extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::rename('tasks', 'tasks_old');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::rename('tasks_old', 'tasks');
|
||||
}
|
||||
}
|
Reference in a new issue