generated from phundrak/rust-poem-openapi-template
This commit renames gejdr-crud to georm for an easier name to remember in case I publish `georm` and `georm-macros`. This commit extracts the `Georm` (formerly `Crud`) trait from `gejdr-core` to its dedicated crate `georm` on which gejdr-core now depends. Currently writing tests
6 lines
150 B
SQL
6 lines
150 B
SQL
DROP TABLE IF EXISTS book_genres;
|
|
DROP TABLE IF EXISTS books;
|
|
DROP TABLE IF EXISTS genres;
|
|
DROP TABLE IF EXISTS authors;
|
|
DROP SCHEMA IF EXISTS tests;
|