1
Fork 0

database: Add some documentation

This commit is contained in:
Steffo 2024-11-18 09:48:43 +01:00
parent ccae871d8e
commit 17a0dfd21d
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -1,8 +1,9 @@
//! Database schema and migrations for the [`acrate`] project.
//! Database schema, migrations, and high level database-reliant structures for the [`acrate`] project.
/// Database schema information automatically generated by [`diesel`].
///
/// Configured by `diesel.toml`.
mod schema;
/// Tables related to web page metadata, XRD and JRD, `host-meta`, `WebFinger`, and so on.
pub mod meta;
pub use diesel;
pub use diesel_async;