Last active
October 6, 2024 23:02
-
-
Save tbmreza/d5aa53ca18e5bdd228c60c043ad23ead to your computer and use it in GitHub Desktop.
unsorted snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load .env inline: | |
env $(cat .env | xargs) mix release | |
sqlite ls tables: | |
SELECT table_name FROM information_schema.tables WHERE table_schema = 'public’; | |
SELECT * FROM sqlite_master where type='table'; -- d1 ok | |
PRAGMA table_info(table_name); | |
postgres ls tables: | |
SELECT * FROM pg_catalog.pg_tables WHERE schemaname='public'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment