Server IP : 103.191.208.50 / Your IP : 216.73.216.226 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/cms.ncriptech.com/database/migrations/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('staff_id')->unique(); $table->integer('department_id')->unsigned()->nullable(); $table->integer('designation_id')->unsigned()->nullable(); $table->string('first_name'); $table->string('last_name'); $table->string('father_name')->nullable(); $table->string('mother_name')->nullable(); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->longText('password_text')->nullable(); $table->tinyInteger('gender')->comment('1 Male, 2 Female & 3 Other'); $table->date('dob'); $table->date('joining_date')->nullable(); $table->date('ending_date')->nullable(); $table->string('phone')->nullable(); $table->string('emergency_phone')->nullable(); $table->string('religion')->nullable(); $table->string('caste')->nullable(); $table->string('mother_tongue')->nullable(); $table->tinyInteger('marital_status')->nullable(); $table->tinyInteger('blood_group')->nullable(); $table->string('nationality')->nullable(); $table->string('national_id')->nullable(); $table->string('passport_no')->nullable(); $table->string('country')->nullable(); $table->integer('present_province')->unsigned()->nullable(); $table->integer('present_district')->unsigned()->nullable(); $table->text('present_village')->nullable(); $table->text('present_address')->nullable(); $table->integer('permanent_province')->unsigned()->nullable(); $table->integer('permanent_district')->unsigned()->nullable(); $table->text('permanent_village')->nullable(); $table->text('permanent_address')->nullable(); $table->string('education_level')->nullable(); $table->string('graduation_academy')->nullable(); $table->string('year_of_graduation')->nullable(); $table->string('graduation_field')->nullable(); $table->longText('experience')->nullable(); $table->longText('note')->nullable(); $table->double('basic_salary',10,2)->default('0'); $table->tinyInteger('contract_type')->default('1')->comment('1 Full Time & 2 Part Time'); $table->integer('work_shift')->unsigned()->nullable(); $table->tinyInteger('salary_type')->default('1')->comment('1 Fixed & 2 Hourly'); $table->text('epf_no')->nullable(); $table->string('bank_account_name')->nullable(); $table->string('bank_account_no')->nullable(); $table->string('bank_name')->nullable(); $table->string('ifsc_code')->nullable(); $table->string('bank_brach')->nullable(); $table->string('tin_no')->nullable(); $table->text('photo')->nullable(); $table->text('signature')->nullable(); $table->text('resume')->nullable(); $table->text('joining_letter')->nullable(); $table->boolean('is_admin')->default('0'); $table->boolean('login')->default('1'); $table->tinyInteger('status')->default('1')->comment('0 Inactive, 1 Active'); $table->rememberToken(); $table->bigInteger('created_by')->unsigned()->nullable(); $table->bigInteger('updated_by')->unsigned()->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }