Skip to content

Commit b4fcf72

Browse files
committed
Refactor tips in README
1 parent 3713334 commit b4fcf72

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,15 @@ Connection.Orm.RegisterType<Sweet>(
9999
);
100100
```
101101

102-
## Notes
102+
## Tips
103103

104-
- Tables are automatically migrated to add new tables and columns, however changed columns are not updated.
105-
- A SqliteConnection should not be used by multiple threads. However, multiple SqliteConnections can be opened and used concurrently, since they use SQLite's built-in `FullMutex`.
104+
### Automatic Schema Migration
105+
106+
Tables are automatically migrated to add new tables and columns, however existing columns are not modified.
107+
108+
### Thread Safety
109+
110+
A SqliteConnection should not be used by multiple threads. However, multiple SqliteConnections can be opened and used concurrently, since they use SQLite's built-in `FullMutex`.
106111

107112
## Versioning Guide
108113

0 commit comments

Comments
 (0)