Last change
on this file was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
781 bytes
|
Rev | Line | |
---|
[0924b6c] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | use Illuminate\Support\Facades\Schema;
|
---|
| 4 | use Illuminate\Database\Schema\Blueprint;
|
---|
| 5 | use Illuminate\Database\Migrations\Migration;
|
---|
| 6 |
|
---|
| 7 | class CreateNotificationsTable extends Migration
|
---|
| 8 | {
|
---|
| 9 | /**
|
---|
| 10 | * Run the migrations.
|
---|
| 11 | *
|
---|
| 12 | * @return void
|
---|
| 13 | */
|
---|
| 14 | public function up()
|
---|
| 15 | {
|
---|
| 16 | Schema::create('notifications', function (Blueprint $table) {
|
---|
| 17 | $table->uuid('id')->primary();
|
---|
| 18 | $table->string('type');
|
---|
| 19 | $table->morphs('notifiable');
|
---|
| 20 | $table->text('data');
|
---|
| 21 | $table->timestamp('read_at')->nullable();
|
---|
| 22 | $table->timestamps();
|
---|
| 23 | });
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | /**
|
---|
| 27 | * Reverse the migrations.
|
---|
| 28 | *
|
---|
| 29 | * @return void
|
---|
| 30 | */
|
---|
| 31 | public function down()
|
---|
| 32 | {
|
---|
| 33 | Schema::dropIfExists('notifications');
|
---|
| 34 | }
|
---|
| 35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.