Fixes 319 - MySQL 5.6 compatibility
Removed the default field during migrations for text fields Added "required" option on incident message
This commit is contained in:
@@ -16,9 +16,9 @@ class CreateComponentsTable extends Migration
|
||||
Schema::create('components', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->text('description')->default('');
|
||||
$table->text('link')->default('');
|
||||
$table->text('tags')->default('');
|
||||
$table->text('description');
|
||||
$table->text('link');
|
||||
$table->text('tags');
|
||||
$table->integer('status');
|
||||
$table->integer('order');
|
||||
$table->integer('group_id');
|
||||
|
||||
Reference in New Issue
Block a user