added migrations of events, feedback, washing machines, and calendar events.

changed migration users table name into name first and name last.
added migration external link table string: name and link.
This commit is contained in:
Vedde
2020-06-08 14:59:25 +02:00
parent cb20b1f862
commit e2562f6960
7 changed files with 133 additions and 4 deletions
@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFeedbacks extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('feedbacks', function (Blueprint $table) {
$table->id();
$table->string("message");
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('feedbacks');
}
}