Files
newznab-tmux/database/migrations/2019_02_19_155147_rename_groups_table.php
T
2020-02-05 17:49:39 +00:00

28 lines
422 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
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()
{
//
}
}