Browse Source

designed post categories table

Exylience 3 years ago
parent
commit
bd4f038ad4

+ 1 - 0
database/migrations/2021_05_04_085209_create_post_categories_table.php

@@ -15,6 +15,7 @@ class CreatePostCategoriesTable extends Migration
     {
         Schema::create('post_categories', function (Blueprint $table) {
             $table->id();
+            $table->string('title');
             $table->timestamps();
         });
     }