id(); $table->string('msnv'); $table->integer('received')->nullable(); $table->string('sender')->nullable(); $table->integer('sent')->nullable(); $table->string('receiver')->nullable(); $table->date('date')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('administration'); } };