Files
newznab-tmux/database/migrations/2019_02_19_155147_rename_groups_table.php
T
2019-05-07 20:56:19 +02:00

28 lines
422 B
PHP

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