Added field for custom CSS to database

See: https://blog.littlelink-custom.com/upcoming-features/
This commit is contained in:
Julian Prieber 2022-04-05 23:23:36 +02:00
parent 7695b9711a
commit 49679f2131

View File

@ -25,6 +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');
});
}