create operator dialogue cartable
This commit is contained in:
@@ -11,11 +11,11 @@ return new class extends Migration
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('operator_dialogue_ratings', function (Blueprint $table) {
|
||||
Schema::create('operator_dialogues', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('cdr_unique_id');
|
||||
$table->dateTime('date');
|
||||
$table->foreignId('expert_id')->constrained('users');
|
||||
$table->foreignId('supervisor_id')->constrained('users');
|
||||
$table->boolean('is_listen')->default(false);
|
||||
$table->boolean('is_good');
|
||||
$table->string('description')->nullable();
|
||||
@@ -28,6 +28,6 @@ return new class extends Migration
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('operator_dialogue_ratings');
|
||||
Schema::dropIfExists('operator_dialogues');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user