diff --git a/database/migrations/2023_11_29_124752_create_group_table.php b/database/migrations/2023_11_29_124752_create_group_table.php new file mode 100644 index 0000000..90ae9c8 --- /dev/null +++ b/database/migrations/2023_11_29_124752_create_group_table.php @@ -0,0 +1,32 @@ +id(); + $table->string('slug')->nullable(); + $table->string('description')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('group'); + } +}