media Datenbank

This commit is contained in:
Kevin Adametz 2019-11-14 20:29:01 +01:00
parent 70704be1ea
commit c11fc557bf
73 changed files with 2241 additions and 9655 deletions

View file

@ -22,10 +22,9 @@ class CreateIQContentFoldersTable extends Migration
$table->string('name')->index();
$table->string('slug')->unique()->index();
$table->string('identifier')->nullable();
$table->string('path')->nullable();
$table->string('color', 7)->nullable();
$table->unsignedTinyInteger('color')->default(0);
$table->unsignedTinyInteger('pos')->default(0);
$table->boolean('active')->default(true);

View file

@ -29,7 +29,7 @@ class CreateIQContentFilesTable extends Migration
$table->text('content')->nullable();
$table->unsignedTinyInteger('color')->default(0);
$table->string('color', 7)->nullable();
$table->unsignedTinyInteger('pos')->default(0);
$table->boolean('active')->default(true);