Commit be361ffa authored by Jens Segers's avatar Jens Segers

Go go travis

parent 34c720b7
......@@ -42,6 +42,11 @@ class MysqlUser extends Eloquent {
{
$schema = Schema::connection('mysql');
if (!$schema->hasTable('users'))
{
Schema::connection('mysql')->create('users', function($table) {});
}
if (!$schema->hasColumn('users', 'id'))
{
Schema::connection('mysql')->table('users', function($table)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment