1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-10-18 10:52:43 +02:00

Fix for migration

This commit is contained in:
Hillel Coren 2017-01-11 20:34:28 +02:00
parent 730108facc
commit 7cd40c6cbd

View File

@ -33,6 +33,15 @@ class SupportNewPricing extends Migration
$table->unsignedInteger('client_id')->nullable()->change(); $table->unsignedInteger('client_id')->nullable()->change();
}); });
// This may fail if the table was created as MyISAM
try {
Schema::table('activities', function (Blueprint $table) {
$table->dropForeign('activities_client_id_foreign');
});
} catch (Exception $e) {
// do nothing
}
// https://github.com/invoiceninja/invoiceninja/pull/950 // https://github.com/invoiceninja/invoiceninja/pull/950
Schema::table('accounts', function (Blueprint $table) { Schema::table('accounts', function (Blueprint $table) {
$table->integer('start_of_week'); $table->integer('start_of_week');