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\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateStudentsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('students', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('student_id')->unique(); $table->string('registration_no')->nullable(); $table->integer('batch_id')->unsigned()->nullable(); $table->integer('program_id')->unsigned()->nullable(); $table->date('admission_date')->nullable(); $table->string('first_name'); $table->string('last_name'); $table->string('father_name')->nullable(); $table->string('mother_name')->nullable(); $table->string('father_occupation')->nullable(); $table->string('mother_occupation')->nullable(); $table->text('father_photo')->nullable(); $table->text('mother_photo')->nullable(); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->longText('password_text')->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->tinyInteger('gender')->comment('1 Male, 2 Female & 3 Other'); $table->date('dob'); $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->text('school_name')->nullable(); $table->string('school_exam_id')->nullable(); $table->string('school_graduation_field')->nullable(); $table->string('school_graduation_year')->nullable(); $table->string('school_graduation_point')->nullable(); $table->string('school_transcript')->nullable(); $table->string('school_certificate')->nullable(); $table->text('collage_name')->nullable(); $table->string('collage_exam_id')->nullable(); $table->string('collage_graduation_field')->nullable(); $table->string('collage_graduation_year')->nullable(); $table->string('collage_graduation_point')->nullable(); $table->string('collage_transcript')->nullable(); $table->string('collage_certificate')->nullable(); $table->text('photo')->nullable(); $table->text('signature')->nullable(); $table->boolean('login')->default('1'); $table->tinyInteger('status')->default('1')->comment('0 Inactive, 1 Active, 2 Passed Out, 3 Transfer Out'); $table->tinyInteger('is_transfer')->default('0')->nullable()->comment('0 Not Transfer, 1 Transfer In & 2 Transfer Out'); $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('students'); } }