You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -58,7 +58,7 @@ Code has no idea about relations between data, so you end up concatenating your
58
58
It is also easy to make a mistake in how you access your database, making it easy for SQL-injection attacks to occur.
59
59
Your data rules are also distributed, increasing the complexity of managing your data, and even worse, is applied inconsistently.
60
60
61
-
An ORM (Object Relational Mapper) is desgined to address these issues, by centralising your data model and data rules, ensuring that your data is managed safely (providing immunity to SQL-injection) and keeps track of relationships so you don't have to.
61
+
An ORM (Object Relational Mapper) is designed to address these issues, by centralising your data model and data rules, ensuring that your data is managed safely (providing immunity to SQL-injection) and keeps track of relationships so you don't have to.
62
62
63
63
Getting Started
64
64
===============
@@ -145,7 +145,7 @@ Tortoise ORM currently supports the following databases:
145
145
* MySQL (requires ``aiomysql``)
146
146
147
147
``generate_schema`` generates the schema on an empty database. Tortoise generates schemas in safe mode by default which
148
-
includes the `IF NOT EXISTS` clause, so you may include it in your main code.
148
+
includes the ``IF NOT EXISTS`` clause, so you may include it in your main code.
0 commit comments