diff --git a/app/Models/Events.php b/app/Models/Events.php new file mode 100644 index 0000000..7db1e16 --- /dev/null +++ b/app/Models/Events.php @@ -0,0 +1,13 @@ +id(); + $table->string('name'); + $table->string('description'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('events'); + } +};