Browse Source

Update SiteAuthorsFixture.php

Jesper Skytte Hansen 10 years ago
parent
commit
766f5faf9b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Fixture/SiteAuthorsFixture.php

+ 1 - 1
tests/Fixture/SiteAuthorsFixture.php

@@ -27,7 +27,7 @@ class SiteAuthorsFixture extends TestFixture
     public $fields = [
         'id' => ['type' => 'integer'],
         'name' => ['type' => 'string', 'default' => null],
-        'site_id' => ['type' => 'integer', 'null' => true],
+        'site_id' => ['type' => 'integer', 'null' => false],
         '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id', 'site_id']]]
     ];