Skip to content

Commit

Permalink
Merge pull request #86 from andes2912/feature/dashboard
Browse files Browse the repository at this point in the history
Add Account Name
  • Loading branch information
andes2912 authored Jul 29, 2022
2 parents dbdc93a + 829bef1 commit 5373baa
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AddColumnAccountNameInBankAccountsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('bank_accounts', function (Blueprint $table) {
$table->string('account_name')->after('account_number');
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('bank_accounts', function (Blueprint $table) {
//
});
}
}

0 comments on commit 5373baa

Please sign in to comment.