diff --git a/database/migrations/2017_04_20_171943_AddScriptsToServiceOptions.php b/database/migrations/2017_04_20_171943_AddScriptsToServiceOptions.php index fb6d2da81..610f18e5f 100644 --- a/database/migrations/2017_04_20_171943_AddScriptsToServiceOptions.php +++ b/database/migrations/2017_04_20_171943_AddScriptsToServiceOptions.php @@ -16,8 +16,8 @@ class AddScriptsToServiceOptions extends Migration Schema::table('service_options', function (Blueprint $table) { $table->text('script_install')->after('startup')->nullable(); $table->boolean('script_is_privileged')->default(true)->after('startup'); - $table->text('script_entry')->default('ash')->after('startup'); - $table->text('script_container')->default('alpine:3.4')->after('startup'); + $table->string('script_entry')->default('ash')->after('startup'); + $table->string('script_container')->default('alpine:3.4')->after('startup'); }); }