// src/server/shared/db/schema.ts
// Aggregates all feature schemas for Drizzle Kit

export * from '@features/personnel/db/employees.table';
export * from '@features/personnel/db/relations';
export * from '@features/personnel/db/employment_periods.table';
export * from '@features/notes/db/notes.table';
export * from '@features/notes/db/note_layouts.table';
export * from '@features/notes/db/note_comments.table';
export * from '@features/notes/db/note_history.table';
export * from '@features/schedule/db/shifts.table';
export * from '@features/schedule/db/shift_tasks.table';
export * from '@features/tasks/db/tasks.table';
export * from '@features/operations/db/checkin.table';
export * from '@features/operations/db/linen.table';
export * from '@features/operations/db/daily_checkins.table';
export * from '@features/operations/db/inv_linen.table';
export * from '@features/operations/db/linen_dispatch_log.table';
export * from '@features/operations/db/daily_linen.table';
export * from '@features/operations/db/daily_cleaning_schedule.table';
export * from '@features/paymaster/db/paymaster_rows.table';
export * from '@features/approval/db/approval_requests.table';
export * from '@features/blacklist/db/blacklist.table';
export * from '@features/reference_books/db/external_access.table';
export * from '@features/reference_books/db/contractors.table';
export * from '@features/reference_books/db/local_it.table';
export * from '@features/reference_books/db/inventory.table';
export * from '@features/notifications/db/pending_notifications.table';
export * from '@features/rooms/db/rooms.table';
export * from '@features/system/db/role_permissions.table';
export * from '@features/system/db/role_colors.table';
export * from '@features/system/db/system_modules.table';
export * from '@features/system/db/role_session_policies.table';
