v0.5.12b - Fixed description of events (string to longText)

This commit is contained in:
Anders 2020-08-07 13:00:37 +02:00
parent d921803dfd
commit 8388fecfb6
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class CreateEvents extends Migration
$table->id();
$table->string("name");
$table->string("accountable");
$table->string("description");
$table->longText("description");
$table->dateTime("date");
$table->timestamps();
});