<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AddTryonConsentToUsersTable extends Migration
{
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            if (!Schema::hasColumn('users', 'tryon_consent_at')) {
                $table->timestamp('tryon_consent_at')->nullable()->after('identity_document_type');
            }
        });
    }

    public function down()
    {
        Schema::table('users', function (Blueprint $table) {
            if (Schema::hasColumn('users', 'tryon_consent_at')) {
                $table->dropColumn('tryon_consent_at');
            }
        });
    }
}
