Remove travis file and fix NULL error in sqlite.

This commit is contained in:
James Cole
2016-08-12 14:50:25 +02:00
parent 015935ed55
commit 955306d877
2 changed files with 5 additions and 26 deletions

View File

@@ -810,10 +810,11 @@ class TestData
foreach ($this->data['users'] as $user) {
$insert[]
= [
'created_at' => $this->time,
'updated_at' => $this->time,
'email' => $user['email'],
'password' => bcrypt($user['password']),
'created_at' => $this->time,
'updated_at' => $this->time,
'email' => $user['email'],
'remember_token' => '',
'password' => bcrypt($user['password']),
];
}