From b8cebbc993f89871dbe7d91484aeb4840f93fb59 Mon Sep 17 00:00:00 2001 From: romanetar Date: Mon, 27 Jan 2025 15:58:21 +0100 Subject: [PATCH] chore: user creation endpoint seed Signed-off-by: romanetar --- database/migrations/Version20250127144553.php | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 database/migrations/Version20250127144553.php diff --git a/database/migrations/Version20250127144553.php b/database/migrations/Version20250127144553.php new file mode 100644 index 00000000..f5a954c6 --- /dev/null +++ b/database/migrations/Version20250127144553.php @@ -0,0 +1,54 @@ + 'create-user', + 'active' => true, + 'route' => '/api/v1/users', + 'http_method' => 'POST', + 'scopes' => [ + IUserScopes::Write + ], + ], + ] + ); + } + + /** + * @param Schema $schema + */ + public function down(Schema $schema): void + { + + } +}