-
-
Notifications
You must be signed in to change notification settings - Fork 281
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
update sql #6844
update sql #6844
Conversation
…r query during shutdown
setting it to draft so I don't mistakenly testmerge it until @LetterN is confident they fixed the issues caused with this PR |
@@ -1,8 +1,6 @@ | |||
/** | |||
* make sure to bump schema version and mark changes in database_changelog.md! | |||
* | |||
* default prefix is rp_ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the reason this is prefixed is not because it's meant to be used as such
rename the file to database_schema-template.sql
or something, and generate a new database schema from it with no prefix if you need one
the reason this file is here is so generating the actual .sql
's is as easy as find-replacing %_PREFIX_%
instead of having to edit two files simultaneously. this results in a lot less typo's.
this'll sound quirky but EZDB should never be automated on the DD instance. as a side note; we generally have a policy that server should not require DB to run and operate, for the most part.
.. and that's about it.
will require DB. they will return null instances if queried when DB is down; this is intentional and fine, as anything not persistent would be loading hardcoded datums in. |
About The Pull Request
title, update sql to support more than 1 connections, add ezdb, remove
%PREFIX%
on non-prefixed oneWhy It's Good For The Game
Changelog