Notes table migration (create)
Notes table migration (create)
This commit is contained in:
parent
924415eb66
commit
e77c402aba
23
database/migrations/2022_12_02_000007_create_notes_table.php
Normal file
23
database/migrations/2022_12_02_000007_create_notes_table.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::create('notes', function (Blueprint $table) {
|
||||
$table->char('id', 8)->primary();
|
||||
$table->char('service_id', 8)->unique();
|
||||
$table->text('note');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('notes');
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue
Block a user