Skip to content

Commit 947be79

Browse files
Stop dropping bank and bank account.
1 parent 4b07798 commit 947be79

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/migrations/2020_06_03_192100_add_columns_for_people_table.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ public function up()
2424
$table->text('description')->nullable();
2525
$table->integer('child_in_family_id')->references('id')->on('families')->nullable();
2626
$table->softDeletes();
27-
$table->dropColumn('bank');
28-
$table->dropColumn('bank_account');
27+
// $table->dropColumn('bank');
28+
// $table->dropColumn('bank_account');
2929
});
3030
}
3131

3232
public function down()
3333
{
3434
Schema::table('people', function ($table) {
35-
$table->string('bank');
36-
$table->string('bank_account');
35+
// $table->string('bank');
36+
// $table->string('bank_account');
3737
$table->dropColumn('gid');
3838
$table->dropColumn('givn');
3939
$table->dropColumn('surn');

0 commit comments

Comments
 (0)