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 + { + + } +}