ctrlpanel/database/migrations/2021_12_28_203515_rename_paypal_products_table.php

29 lines
534 B
PHP

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