v1.2.0 - You can now create and edit guides

This commit is contained in:
Anders
2020-09-11 12:30:37 +02:00
parent 78ab6be31a
commit cab8ad604c
10 changed files with 56 additions and 14 deletions
@@ -18,6 +18,7 @@ class CreateGuidesTable extends Migration
$table->timestamps();
$table->string('name')->unique();
$table->longText('guide_articles');
$table->foreignId('guide_category_id')->nullable()->constrained('guides_categories', 'id');
$table->foreignId('resource_id')->nullable()->constrained('resources', 'id');
});
}