Added a new column to feedbacks

This commit is contained in:
Anders 2020-06-29 13:30:13 +02:00
parent b942d8c1e1
commit 6441a8838a
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ class CreateFeedbacks extends Migration
Schema::create('feedbacks', function (Blueprint $table) {
$table->id();
$table->string("message");
$table->string("suggestion_form"); //Skriver om det er Ris el. Ros
$table->timestamps();
});
}