Updated FAQ (markdown)

This commit is contained in:
oshai
2017-12-22 20:39:06 +02:00
committed by Andrey.Tarashevskiy
parent c28553032e
commit bbdf899efe

6
FAQ.md
View File

@@ -43,4 +43,8 @@ A: Yes. See example here: https://github.com/JetBrains/Exposed/issues/82
### Q: How can I add another type of Database?
A: Implement `DatabaseDialect` interface and register it with `Database.registerDialect()`.
If the implementation adds a lot of value consider contributing it as a PR to Exposed.
If the implementation adds a lot of value consider contributing it as a PR to Exposed.
### Q: Is it possible to create tables with cross / cyclic reference?
A: No. Its possible in sql directly in couple of steps. More details here: https://github.com/JetBrains/Exposed/issues/185