Update 2021_03_18_082008_create_links_table.php

This commit is contained in:
Julian Prieber 2022-04-06 13:58:17 +02:00 committed by GitHub
parent 49679f2131
commit 559ecbee21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class CreateLinksTable extends Migration
$table->foreign('user_id')->references('id')->on('users');
$table->foreign('button_id')->references('id')->on('buttons');
$table->timestamps();
$table->text('custom_css');
$table->text('custom_css')->default('');
});
}