mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 15:33:44 +01:00
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