all feature
This commit is contained in:
@@ -11,30 +11,20 @@ return new class extends Migration
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
Schema::create('user', function (Blueprint $table) {
|
||||
$table->string('msnv')->primary();
|
||||
$table->string('mail');
|
||||
$table->string('pass');
|
||||
$table->tinyInteger('role')->default(0)->comment('0: member / 1: admin');
|
||||
$table->tinyInteger('status')->default(1)->comment('0: đã nghỉ / 1: đang làm');
|
||||
$table->integer('card')->nullable();
|
||||
$table->tinyInteger('flag_send')->default(0)->comment('0: không được gửi / 1: được gửi');
|
||||
$table->tinyInteger('first_login')->default(1)->comment('0: không là lần đầu / 1: lần đầu');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
||||
$table->string('email')->primary();
|
||||
$table->string('token');
|
||||
$table->timestamp('created_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('sessions', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->foreignId('user_id')->nullable()->index();
|
||||
$table->string('ip_address', 45)->nullable();
|
||||
$table->text('user_agent')->nullable();
|
||||
$table->longText('payload');
|
||||
$table->integer('last_activity')->index();
|
||||
});
|
||||
// Only user table remains
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -42,8 +32,6 @@ return new class extends Migration
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('password_reset_tokens');
|
||||
Schema::dropIfExists('sessions');
|
||||
Schema::dropIfExists('user');
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user