mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
commit
f69a624b48
@ -90,7 +90,7 @@ class CreateUsersTable extends Migration
|
||||
$table->string('site_url', 200)->nullable();
|
||||
$table->boolean('is_offsite')->default(false);
|
||||
$table->boolean('is_secure')->default(false);
|
||||
$table->longText('fields')->nullable();
|
||||
$table->mediumText('fields')->nullable();
|
||||
$table->unsignedInteger('default_gateway_type_id')->default(1);
|
||||
$table->timestamps(6);
|
||||
});
|
||||
|
@ -17,6 +17,10 @@ class ProjectIdsToEntities extends Migration
|
||||
$table->unsignedInteger('project_id')->nullable();
|
||||
});
|
||||
|
||||
Schema::table('gateways', function (Blueprint $table) {
|
||||
$table->longText('fields')->change();
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user