Commit 2e2b2002 authored by Jens Segers's avatar Jens Segers

Go go travis

parent be361ffa
......@@ -44,7 +44,11 @@ class MysqlUser extends Eloquent {
if (!$schema->hasTable('users'))
{
Schema::connection('mysql')->create('users', function($table) {});
Schema::connection('mysql')->create('users', function($table)
{
$table->increments('id');
$table->string('name');
});
}
if (!$schema->hasColumn('users', 'id'))
......
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