Fix countries for documents #1p66u4u

This commit is contained in:
Cüneyt Şentürk
2021-11-08 02:40:40 +03:00
parent 4f1146dc33
commit d9d0e09e3a
15 changed files with 112 additions and 5 deletions

View 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()
{
//
}
}