2025-11-18 20:38:01 -08:00
|
|
|
// Phonograph - A friendly PostgreSQL wrapper for nerds of all stripes.
|
|
|
|
|
// Copyright (C) 2025 Second System Technologies LLC
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify it
|
|
|
|
|
// under the terms of the GNU Affero General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
|
// option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
|
// FOR A PARTICULAR PURPOSE.
|
|
|
|
|
//
|
|
|
|
|
// See the GNU Affero General Public License for more details. You should have
|
|
|
|
|
// received a copy of the GNU Affero General Public License along with this
|
|
|
|
|
// program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2025-11-19 01:31:09 +00:00
|
|
|
pub mod accessors;
|
2025-08-04 13:59:42 -07:00
|
|
|
pub mod client;
|
2025-11-01 00:17:07 +00:00
|
|
|
pub mod cluster;
|
2025-10-01 22:36:19 -07:00
|
|
|
pub mod errors;
|
2025-07-08 16:54:51 -07:00
|
|
|
pub mod field;
|
2025-09-14 16:19:44 -04:00
|
|
|
pub mod language;
|
2025-11-01 00:17:07 +00:00
|
|
|
mod macros;
|
2025-09-14 16:19:44 -04:00
|
|
|
pub mod portal;
|
2025-09-08 15:56:57 -07:00
|
|
|
pub mod presentation;
|
2025-11-01 00:17:07 +00:00
|
|
|
pub mod service_cred;
|
2025-08-04 13:59:42 -07:00
|
|
|
pub mod user;
|
2025-09-14 16:19:44 -04:00
|
|
|
pub mod workspace;
|
|
|
|
|
pub mod workspace_user_perm;
|
2025-07-08 14:37:03 -07:00
|
|
|
|
|
|
|
|
pub static MIGRATOR: sqlx::migrate::Migrator = sqlx::migrate!();
|