mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Seeding ok with MySQL STRICT_TRANS_TABLE, fixes #157
This commit is contained in:
parent
b371243ebd
commit
620b09ccc8
@ -15,8 +15,8 @@ class AddSortAndRecommendedToGateways extends Migration {
|
|||||||
Schema::table('gateways', function($table)
|
Schema::table('gateways', function($table)
|
||||||
{
|
{
|
||||||
$table->unsignedInteger('sort_order')->default(10000);
|
$table->unsignedInteger('sort_order')->default(10000);
|
||||||
$table->boolean('recommended');
|
$table->boolean('recommended')->default(0);
|
||||||
$table->string('site_url', 200);
|
$table->string('site_url', 200)->nullable();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user