-
-
Notifications
You must be signed in to change notification settings - Fork 121
Nostr SQL databases #855
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
base: master
Are you sure you want to change the base?
Nostr SQL databases #855
Conversation
@tompro, during local tests, I noticed that I found also |
You probably mean for generating/updating the rust bindings (ORM mappings)? The thing is in Diesel this is done reverse. So first you run your migrations in a db instance and then re-import the bindings (diesel print-schema). This approach allows you to import a foreign schema from an existing db but it always requires a running database.
I have been using |
Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
Adds support for PostgreSQL, MySQL and SQLite backends.