// Re-export common types
pub use ;
pub use Decimal;
pub use Uuid;
/// JSON field type for storing arbitrary JSON data
pub type Json = Value;
/// Jsonb field type (alias for Json, treated the same way)
pub type Jsonb = Value;
/// Text type (for long strings)
pub type Text = String;
/// Array types for PostgreSQL array columns
pub type IntArray = ;
/// Big integer array type for PostgreSQL
pub type BigIntArray = ;
/// Text array type for PostgreSQL
pub type TextArray = ;
/// Boolean array type for PostgreSQL
pub type BoolArray = ;
/// Float array type for PostgreSQL
pub type FloatArray = ;
/// JSON array type for PostgreSQL
pub type JsonArray = ;