Added User Invitation created_by and created_from columns..

This commit is contained in:
Cüneyt Şentürk
2023-07-05 12:16:25 +03:00
parent 2469bc2c09
commit 7d906b7f97
3 changed files with 18 additions and 1 deletions

View File

@ -26,6 +26,12 @@ return new class extends Migration
$table->unique(['company_id', 'key', 'deleted_at']);
});
// User Invitations
Schema::table('user_invitations', function (Blueprint $table) {
$table->unsignedInteger('created_by')->nullable()->after('token');
$table->string('created_from', 100)->nullable()->after('token');
});
}
/**
@ -48,5 +54,11 @@ return new class extends Migration
$table->unique(['company_id', 'key']);
});
// User Invitations
Schema::table('user_invitations', function (Blueprint $table) {
$table->dropColumn('created_by');
$table->dropColumn('created_from');
});
}
};