1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/database/migrations/2016_05_24_164847_wepay_ach.php
2016-05-24 14:16:42 -04:00

58 lines
1.4 KiB
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class WePayAch extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('contacts', function(Blueprint $table) {
$table->string('contact_key')->index()->default(null);
});
Schema::table('payment_methods', function($table)
{
$table->string('bank_name')->nullable();
});
Schema::table('payments', function($table)
{
$table->string('bank_name')->nullable();
});
Schema::table('accounts', function($table)
{
$table->boolean('auto_bill_on_due_date')->default(false);
});
DB::statement('ALTER TABLE `payments` ADD `ip_address` VARBINARY(16)');
DB::statement('ALTER TABLE `payment_methods` ADD `ip_address` VARBINARY(16)');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('contacts', function(Blueprint $table) {
$table->dropColumn('contact_key');
});
Schema::table('payments', function($table) {
$table->dropColumn('ip_address');
});
Schema::table('payment_methods', function($table) {
$table->dropColumn('ip_address');
});
}
}