Skip to content

Commit 9559b29

Browse files
committed
Go go travis
1 parent 2e2b200 commit 9559b29

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/models/MysqlUser.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,11 @@ public static function executeSchema()
4848
{
4949
$table->increments('id');
5050
$table->string('name');
51+
$table->timestamps();
5152
});
5253
}
5354

54-
if (!$schema->hasColumn('users', 'id'))
55+
/*if (!$schema->hasColumn('users', 'id'))
5556
{
5657
Schema::connection('mysql')->table('users', function($table)
5758
{
@@ -65,7 +66,7 @@ public static function executeSchema()
6566
{
6667
$table->string('name');
6768
});
68-
}
69+
}*/
6970
}
7071

7172
}

0 commit comments

Comments
 (0)