Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Fix add account #133

Merged
merged 2 commits into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions database/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,25 @@
"description": "Prepare the favorites metar (not finished) | (V.0.0.2 in progress)"
}
]
},
"9": {
"id": 10,
"name": "2023 / 35",
"date": "2023-11-25",
"version": "26.2.6",
"option": [
{
"id": 0,
"type": "Bug Fix",
"btn": "danger",
"description": "Fixed Account creat page"
},
{
"id": 1,
"type": "Change",
"btn": "warning",
"description": "change welcome page"
}
]
}
}
26 changes: 26 additions & 0 deletions database/migrations/2023_11_25_103158_updateusers.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

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

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->string('email')->nullable()->change()->comment('Email');
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};
Loading