These migrations... work?? 🐋

This commit is contained in:
Dane Everitt
2017-09-11 01:15:44 -05:00
parent 1873c1e9b9
commit 07965d0ce7
6 changed files with 173 additions and 80 deletions

View File

@@ -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');
}
}