Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

LaravelDaily / Laravel-9-Beginners Public

Code Issues Pull requests Actions Projects Security Insights

Commit

Lesson 5 - DB migrations Browse files


main

PovilasKorop committed on Apr 9, 2022 1 parent f77dad3 commit aa52b3f

Showing 1 changed file with 32 additions and 0 deletions. Split Unified


32 database/migrations/2022_04_09_053839_create_categories_table.php

... ... @@ -0,0 +1,32 @@

1 + <?php
2 +
3 + use Illuminate\Database\Migrations\Migration;
4 + use Illuminate\Database\Schema\Blueprint;
5 + use Illuminate\Support\Facades\Schema;
6 +
7 + return new class extends Migration
8 + {
9 + /**
10 + * Run the migrations.
11 + *
12 + * @return void
13 + */
14 + public function up()
15 + {
16 + Schema::create('categories', function (Blueprint $table) {
17 + $table->id();
18 + $table->string('name');
19 + $table->timestamps();
20 + });
21 + }
22 +
23 + /**
24 + * Reverse the migrations.
25 + *
26 + * @return void
27 + */
28 + public function down()
29 + {
30 + Schema::dropIfExists('categories');
31 + }
32 + };

0 comments on commit aa52b3f

Please sign in to comment.

You might also like