Loading app/Note.php 0 → 100644 +10 −0 Original line number Diff line number Diff line <?php namespace App; use Illuminate\Database\Eloquent\Model; class Note extends Model { // } database/migrations/2020_05_13_085805_create_notes_table.php 0 → 100644 +35 −0 Original line number Diff line number Diff line <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNotesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('notes', function (Blueprint $table) { $table->id(); $table->timestamps(); $table->unsignedBigInteger('user_id'); $table->foreign('user_id')->references('id')->on('users'); $table->text('title')->nullable(); $table->text('body')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notes'); } } Loading
app/Note.php 0 → 100644 +10 −0 Original line number Diff line number Diff line <?php namespace App; use Illuminate\Database\Eloquent\Model; class Note extends Model { // }
database/migrations/2020_05_13_085805_create_notes_table.php 0 → 100644 +35 −0 Original line number Diff line number Diff line <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNotesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('notes', function (Blueprint $table) { $table->id(); $table->timestamps(); $table->unsignedBigInteger('user_id'); $table->foreign('user_id')->references('id')->on('users'); $table->text('title')->nullable(); $table->text('body')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notes'); } }