mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
commit
f69a624b48
@ -90,7 +90,7 @@ class CreateUsersTable extends Migration
|
|||||||
$table->string('site_url', 200)->nullable();
|
$table->string('site_url', 200)->nullable();
|
||||||
$table->boolean('is_offsite')->default(false);
|
$table->boolean('is_offsite')->default(false);
|
||||||
$table->boolean('is_secure')->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->unsignedInteger('default_gateway_type_id')->default(1);
|
||||||
$table->timestamps(6);
|
$table->timestamps(6);
|
||||||
});
|
});
|
||||||
|
@ -17,6 +17,10 @@ class ProjectIdsToEntities extends Migration
|
|||||||
$table->unsignedInteger('project_id')->nullable();
|
$table->unsignedInteger('project_id')->nullable();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('gateways', function (Blueprint $table) {
|
||||||
|
$table->longText('fields')->change();
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user