Added database migration for custom icons

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/
This commit is contained in:
Julian Prieber 2022-04-11 13:14:14 +02:00
parent 8fa1aa8e51
commit d880fa84d3

View File

@ -26,6 +26,7 @@ class CreateLinksTable extends Migration
$table->foreign('button_id')->references('id')->on('buttons'); $table->foreign('button_id')->references('id')->on('buttons');
$table->timestamps(); $table->timestamps();
$table->text('custom_css')->default(''); $table->text('custom_css')->default('');
$table->text('custom_icon')->default('fa-external-link');
}); });
} }