We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98b8590 + d9b8f5e commit d40977fCopy full SHA for d40977f
src/migrations/2020_06_03_192100_add_columns_for_people_table.php
@@ -24,16 +24,16 @@ public function up()
24
$table->text('description')->nullable();
25
$table->integer('child_in_family_id')->references('id')->on('families')->nullable();
26
$table->softDeletes();
27
- // $table->dropColumn('bank');
+ // $table->dropColumn('bank');
28
// $table->dropColumn('bank_account');
29
});
30
}
31
32
public function down()
33
{
34
Schema::table('people', function ($table) {
35
- // $table->string('bank');
36
- // $table->string('bank_account');
+ // $table->string('bank');
+ // $table->string('bank_account');
37
$table->dropColumn('gid');
38
$table->dropColumn('givn');
39
$table->dropColumn('surn');
0 commit comments