%PDF- %PDF-
Direktori : /var/www/html/hrsys/api/database/migrations/ |
Current File : /var/www/html/hrsys/api/database/migrations/2020_03_29_111627_create_notifications_table.php |
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNotificationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('notifications', function (Blueprint $table) { $table->id(); $table->text('title'); $table->text('message') ->nullable(); $table->boolean('is_read') ->default(false); $table->dateTime('read_at') ->nullable(); $table->unsignedBigInteger('user_id') ->index(); $table->foreign('user_id') ->references('id') ->on('users'); $table->morphs('model'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifications'); } }