Seeding ok with MySQL STRICT_TRANS_TABLE, fixes #157
This commit is contained in:
parent
b371243ebd
commit
620b09ccc8
1 changed files with 2 additions and 2 deletions
|
|
@ -15,8 +15,8 @@ class AddSortAndRecommendedToGateways extends Migration {
|
|||
Schema::table('gateways', function($table)
|
||||
{
|
||||
$table->unsignedInteger('sort_order')->default(10000);
|
||||
$table->boolean('recommended');
|
||||
$table->string('site_url', 200);
|
||||
$table->boolean('recommended')->default(0);
|
||||
$table->string('site_url', 200)->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue