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
> 🥇 **We recommend you to use `drop` or `force` if you are going to change or modify `foreign` and `primary` keys. This is because setting the option `alter` doe not have an effect on `primary` key columns.**
41
+
42
+
===
43
+
44
+
# Dataloom **`2.0.0`**
45
+
46
+
### Release Notes - `dataloom`
47
+
48
+
We have release the new `dataloom` Version `2.0.0` (`2024-02-21`)
|`connection_uri`| The connection `uri` for the specified dialect. |`str` or `None`|`None`|`No`|
250
294
|`dialect`| Dialect for the database connection. Options are `mysql`, `postgres`, or `sqlite`|`str` or `None`|`None`|`Yes`|
251
-
|`database`| Name of the database for `mysql` and `postgres`, filename for `sqlite`|`str` or `None`|`None`|`Yes`|
295
+
|`database`| Name of the database for `mysql` and `postgres`, filename for `sqlite`|`str` or `None`|`None`|`No`|
252
296
|`password`| Password for the database user (only for `mysql` and `postgres`) |`str` or `None`|`None`|`No`|
253
297
|`user`| Database user (only for `mysql` and `postgres`) |`str` or `None`|`None`|`No`|
254
298
|`host`| Database host (only for `mysql` and `postgres`) |`str` or `None`|`localhost`|`No`|
@@ -620,6 +664,8 @@ The method returns a list of table names that have been created or that exist in
620
664
|`force`| Forcefully drop tables during syncing or not. |`bool`|`False`|
621
665
|`alter`| Alter tables instead of dropping them during syncing or not. |`bool`|`False`|
622
666
667
+
> 🥇 **We recommend you to use `drop` or `force` if you are going to change or modify `foreign` and `primary` keys. This is because setting the option `alter` doe not have an effect on `primary` key columns.**
668
+
623
669
> We've noticed two steps involved in starting to work with our `orm`. Initially, you need to create a connection and then synchronize the tables in another step.
0 commit comments