Commit f1d93b03 authored by Alyx's avatar Alyx
Browse files

Added notes migration and model

parent eef96a89
Loading
Loading
Loading
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
{
    //
}
+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');
    }
}