We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9b42a8 commit 83fa39fCopy full SHA for 83fa39f
database/migrations/2021_03_18_082008_create_links_table.php
@@ -25,8 +25,8 @@ public function up()
25
$table->foreign('user_id')->references('id')->on('users');
26
$table->foreign('button_id')->references('id')->on('buttons');
27
$table->timestamps();
28
- $table->text('custom_css')->default('');
29
- $table->text('custom_icon')->default('fa-external-link');
+ $table->string('custom_css')->default('');
+ $table->string('custom_icon')->default('fa-external-link');
30
});
31
}
32
0 commit comments