From d880fa84d3b028096db35bb0bff8448ad18c3dc8 Mon Sep 17 00:00:00 2001 From: Julian Prieber <60265788+JulianPrieber@users.noreply.github.com> Date: Mon, 11 Apr 2022 13:14:14 +0200 Subject: [PATCH] Added database migration for custom icons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added database migration for the upcoming custom icons on the Button Editor. See: https://blog.littlelink-custom.com/upcoming-features/ And: https://blog.littlelink-custom.com/progress-of-the-new-button-editor/ --- database/migrations/2021_03_18_082008_create_links_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2021_03_18_082008_create_links_table.php b/database/migrations/2021_03_18_082008_create_links_table.php index 43d0c95..89097cf 100755 --- a/database/migrations/2021_03_18_082008_create_links_table.php +++ b/database/migrations/2021_03_18_082008_create_links_table.php @@ -26,6 +26,7 @@ class CreateLinksTable extends Migration $table->foreign('button_id')->references('id')->on('buttons'); $table->timestamps(); $table->text('custom_css')->default(''); + $table->text('custom_icon')->default('fa-external-link'); }); }