Fix countries for documents #1p66u4u
This commit is contained in:
33
database/migrations/2021_09_10_000000_core_v2127.php
Normal file
33
database/migrations/2021_09_10_000000_core_v2127.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CoreV2127 extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('documents', function (Blueprint $table) {
|
||||
$table->string('contact_country')->nullable()->after('contact_address');
|
||||
$table->string('contact_state')->nullable()->after('contact_address');
|
||||
$table->string('contact_zip_code')->nullable()->after('contact_address');
|
||||
$table->string('contact_city')->nullable()->after('contact_address');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user