Lint
This commit is contained in:
parent
ccfeb85e4b
commit
231ed3b4ad
|
@ -16,7 +16,7 @@ return new class extends Migration
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('participants', function (Blueprint $table) {
|
Schema::table('participants', function (Blueprint $table) {
|
||||||
$table->renameColumn('mitgliedsnr', 'member_id')->nullable();
|
$table->renameColumn('mitgliedsnr', 'member_id');
|
||||||
});
|
});
|
||||||
|
|
||||||
Schema::table('participants', function (Blueprint $table) {
|
Schema::table('participants', function (Blueprint $table) {
|
||||||
|
|
|
@ -430,7 +430,7 @@ class FormRegisterActionTest extends FormTestCase
|
||||||
->create();
|
->create();
|
||||||
|
|
||||||
$this->register($form, ['email' => 'max@muster.de'])->assertOk();
|
$this->register($form, ['email' => 'max@muster.de'])->assertOk();
|
||||||
$this->assertNull($form->participants->first()->mitgliedsnr);
|
$this->assertNull($form->participants->first()->member_id);
|
||||||
$this->assertNull($form->participants->first()->parent_id);
|
$this->assertNull($form->participants->first()->parent_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue