Closes #688 - Drop user_id column

This commit is contained in:
James Brooks
2015-06-10 13:33:00 +01:00
parent d9e515c62d
commit 620e7fed56
12 changed files with 78 additions and 27 deletions

View File

@@ -28,7 +28,6 @@ $factory->define('CachetHQ\Cachet\Models\Component', function ($faker) {
'link' => $faker->url(),
'status' => 1,
'order' => 0,
'user_id' => 1,
];
});
@@ -37,7 +36,6 @@ $factory->define('CachetHQ\Cachet\Models\Incident', function ($faker) {
'name' => $faker->sentence(),
'message' => $faker->paragraph(),
'status' => 1,
'user_id' => 1,
];
});