mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
Make license fields nullable
This commit is contained in:
parent
6beceb35e0
commit
c354179d7f
@ -21,6 +21,16 @@ class FixPaymentContactForeignKey extends Migration
|
||||
Schema::table('payments', function ($table) {
|
||||
$table->foreign('contact_id')->references('id')->on('contacts')->onDelete('cascade');
|
||||
});
|
||||
|
||||
Schema::table('licenses', function ($table) {
|
||||
$table->unsignedInteger('affiliate_id')->nullable()->change();
|
||||
$table->string('first_name')->nullable()->change();
|
||||
$table->string('last_name')->nullable()->change();
|
||||
$table->string('email')->nullable()->change();
|
||||
$table->string('license_key')->unique()->nullable()->change();
|
||||
$table->boolean('is_claimed')->nullable()->change();
|
||||
$table->string('transaction_reference')->nullable()->change();
|
||||
});
|
||||
} catch (Exception $exception) {
|
||||
// do nothing, change only needed for invoiceninja servers
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user