added values to migrations.

This commit is contained in:
Vedde
2020-06-10 12:29:18 +02:00
parent 2febf83348
commit 643ac9e3de
4 changed files with 5 additions and 3 deletions
@@ -15,6 +15,8 @@ class CreateEvents extends Migration
{
Schema::create('events', function (Blueprint $table) {
$table->id();
$table->string("name");
$table->string("description");
$table->timestamps();
});
}