Merge pull request #59 from vkiranmaniya/master

Removed JSON SQL datatype, Replaced with TEXT Type
This commit is contained in:
Mohit Panjwani
2019-12-14 12:32:31 +05:30
committed by GitHub

View File

@@ -20,9 +20,9 @@ class CreateMediaTable extends Migration
$table->string('mime_type')->nullable();
$table->string('disk');
$table->unsignedInteger('size');
$table->json('manipulations');
$table->json('custom_properties');
$table->json('responsive_images');
$table->text('manipulations');
$table->text('custom_properties');
$table->text('responsive_images');
$table->unsignedInteger('order_column')->nullable();
$table->nullableTimestamps();
});