v1.1.0b -Added guides categorys

This commit is contained in:
2020-09-10 15:31:06 +02:00
parent 5f7d37e08a
commit de3ed9c326
13 changed files with 514 additions and 0 deletions
@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateGuidesCategoriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('guides_categories', function (Blueprint $table) {
$table->id();
$table->string('guidesCategoryName')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('guides_categories');
}
}