added migrations for mime_types

This commit is contained in:
Arno Kaimbacher 2019-08-29 17:51:13 +02:00
parent 7641c1dfdf
commit 4d22498e2d
4 changed files with 102 additions and 90 deletions

View file

@ -0,0 +1,34 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMimeTypesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('mime_types', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 255);
$table->string('file_extension', 255);
$table->boolean('enabled')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('mime_types');
}
}