Skip to main content

uqa_sql/schema/
sequences.rs

1//
2// Unified Query Algebra
3//
4// Copyright (c) 2023-2026 Cognica, Inc.
5//
6
7//! SQL sequence declarations, names, and ownership binding.
8pub mod actions;
9pub mod definition;
10pub mod implicit;
11pub mod ownership;
12
13pub mod implicit_ownership;
14
15pub mod lifecycle;
16pub mod names;
17
18pub mod dependencies;
19pub mod dependents;
20
21pub mod owner_migration;