mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 04:24:16 +00:00
Initial commit
This commit is contained in:
@@ -16,7 +16,6 @@ class CreateAddressesTable extends Migration
|
||||
{
|
||||
Schema::create('addresses', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('company_id');
|
||||
$table->string('street_one');
|
||||
$table->string('street_two')->nullable();
|
||||
$table->string('city');
|
||||
@@ -29,7 +28,6 @@ class CreateAddressesTable extends Migration
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('company_id')->references('id')->on('companies');
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user