-
Notifications
You must be signed in to change notification settings - Fork 7
adding a button to change the relationship type and adding the zero-to-many relationship. #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -141,7 +141,7 @@ const en = { | |||||
| swap: "Swap", | ||||||
| one_to_one: "One to one", | ||||||
| one_to_many: "One to many", | ||||||
| many_to_one: "Many to one", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why are you deleting |
||||||
| zero_to_many: "Cero to many", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| content: "Content", | ||||||
| types_info: | ||||||
| "This feature is meant for object-relational DBMSs like PostgreSQL.\nIf used for MySQL or MariaDB a JSON type will be generated with the corresponding json validation check.\nIf used for SQLite it will be translated to a BLOB.\nIf used for MSSQL a type alias to the first field will be generated.", | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -134,7 +134,7 @@ const es = { | |||||
| swap: "Intercambiar", | ||||||
| one_to_one: "Uno a uno", | ||||||
| one_to_many: "Uno a muchos", | ||||||
| many_to_one: "Muchos a uno", | ||||||
| Zero_to_much: "Zero a Muchos", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| content: "Contenido", | ||||||
| types_info: | ||||||
| "Esta característica está destinada a DBMSs objeto-relacionales como PostgreSQL.\nSi se usa para MySQL o MariaDB, se generará un tipo JSON con la verificación de validación json correspondiente.\nSi se usa para SQLite, se traducirá a un BLOB.\nSi se usa para MSSQL, se generará un alias de tipo al primer campo.", | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you explain what is a zero-to-many relationship in a comment?
and perhaps add a screenshot to the PR