sqlm-postgres 0.1.0

`sql!` macro to write compile-time checked database queries similar to how `format!` works
Documentation
1
2
3
4
5
6
7
8
test_db_up:
	createuser sqlm-test
	createdb -O sqlm-test sqlm-test
	psql -U sqlm-test sqlm-test < testdb.sql

test_db_down:
	dropdb sqlm-test
	dropuser sqlm-test