feat: add locale to user table

This commit is contained in:
Miguel Nogueira 2022-09-04 15:25:55 +01:00
parent 0f30d3d4be
commit e92b7f83d3
No known key found for this signature in database
GPG Key ID: 3C6A7E29AF26D370

View File

@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddLocaleToUsers extends Migration
{
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('locale')->after('email')->default('en-US');
});
}
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('locale');
});
}
}