mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-04-16 19:27:34 +02:00
Fixed error when migrating database with MySQL
This commit is contained in:
parent
a9b42a8d65
commit
83fa39f579
@ -25,8 +25,8 @@ class CreateLinksTable extends Migration
|
|||||||
$table->foreign('user_id')->references('id')->on('users');
|
$table->foreign('user_id')->references('id')->on('users');
|
||||||
$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->string('custom_css')->default('');
|
||||||
$table->text('custom_icon')->default('fa-external-link');
|
$table->string('custom_icon')->default('fa-external-link');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user