This commit is contained in:
2023-03-31 12:12:45 +02:00
parent 1c67d403f0
commit 6c5c6e133b
2 changed files with 0 additions and 6 deletions

View File

@@ -18,13 +18,9 @@ class CreateEventsTable extends Migration
Schema::create('events', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->date('start');
$table->date('end');
$table->timestamps();
});