commit
f69a624b48
2 changed files with 5 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue