feat(package): migrator: something

This commit is contained in:
2025-12-04 21:02:38 +00:00
parent 758c431fb4
commit 659ede1043
12 changed files with 226 additions and 120 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
# columns(table)
columns() {
psql -Atc 'SELECT column_name
FROM information_schema.columns
WHERE table_name = '"${1};"
}