Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateTeachersTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('teachers', function (Blueprint $table) {
- $table->id();
- $table->string('name', 300);
- $table->string('nik', 16)->unique();
- $table->string('birth_place');
- $table->date('birth_date');
- $table->enum('gender', ['L', 'P']);
- $table->string('father');
- $table->string('mother');
- $table->text('address');
- $table->string('phone');
- $table->string('email')->unique();
- $table->string('nuptk');
- $table->string('last_collage');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('teachers');
- }
- }
Add Comment
Please, Sign In to add comment