This commit is contained in:
antv
2026-07-02 17:02:02 +07:00
parent 89790539b7
commit f594a45e84
17 changed files with 200 additions and 122 deletions
@@ -12,12 +12,12 @@ return new class extends Migration
public function up(): void
{
Schema::create('administration', function (Blueprint $table) {
$table->id();
$table->string('msnv');
$table->increments('id');
$table->integer('msnv');
$table->integer('received')->nullable();
$table->string('sender')->nullable();
$table->integer('sender')->nullable();
$table->integer('sent')->nullable();
$table->string('receiver')->nullable();
$table->integer('receiver')->nullable();
$table->date('date')->nullable();
});
}