Conexão com o banco feita (Supabase)#1667
Closed
gbrreel wants to merge 1 commit intoEvolutionAPI:mainfrom
gbrreel:evolution_API
Closed
Conexão com o banco feita (Supabase)#1667gbrreel wants to merge 1 commit intoEvolutionAPI:mainfrom gbrreel:evolution_API
gbrreel wants to merge 1 commit intoEvolutionAPI:mainfrom
gbrreel:evolution_API
Conversation
Contributor
Reviewer's GuideThis PR sets up a Supabase database connection by introducing a new Prisma schema file and bumps the Multer dependency to version 2, updating the lockfile accordingly. Entity relationship diagram for new Prisma schema (Supabase connection)erDiagram
%% Add your tables/entities here as per the new schema.prisma file
%% Since the schema.prisma content is not shown, this is a placeholder for the new database structure
%% Example:
%% User {
%% id int PK
%% email string
%% name string
%% }
%% Post {
%% id int PK
%% title string
%% content string
%% authorId int FK
%% }
%% User ||--o{ Post : has
%% Replace above with actual entities from schema.prisma
Class diagram for updated Multer dependencyclassDiagram
class MulterV2 {
+storage
+limits
+fileFilter
+handle()
}
%% This diagram represents the update to Multer v2, which may have new or changed methods/attributes
%% Add or modify methods/attributes as per actual usage if available
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary by Sourcery
Integrate Supabase database connection by adding an initial Prisma schema and upgrade the Multer middleware to v2.0.1
New Features:
Enhancements: