mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreatePaymentLibraries extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::dropIfExists('payment_libraries');
|
|
|
|
Schema::create('payment_libraries', function ($t) {
|
|
$t->increments('id');
|
|
$t->timestamps();
|
|
|
|
$t->string('name');
|
|
$t->boolean('visible')->default(true);
|
|
});
|
|
|
|
Schema::table('gateways', function ($table) {
|
|
$table->unsignedInteger('payment_library_id')->default(1);
|
|
});
|
|
|
|
DB::table('gateways')->update(['payment_library_id' => 1]);
|
|
|
|
Schema::table('gateways', function ($table) {
|
|
$table->foreign('payment_library_id')->references('id')->on('payment_libraries')->onDelete('cascade');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
if (Schema::hasColumn('gateways', 'payment_library_id')) {
|
|
Schema::table('gateways', function ($table) {
|
|
$table->dropForeign('gateways_payment_library_id_foreign');
|
|
$table->dropColumn('payment_library_id');
|
|
});
|
|
}
|
|
|
|
Schema::dropIfExists('payment_libraries');
|
|
}
|
|
}
|