At Airstudio, each customer’s data is fully isolated using PostgreSQL database schemas, meaning every account has its own dedicated logical database within our PostgreSQL instance. This ensures no data is ever commingled between accounts — each customer operates in a secure, segregated environment.
When an account is closed, we delete the entire PostgreSQL schema associated with that account, permanently removing all data related to the customer — including files, metadata, user records, and any other stored information.
This architecture not only guarantees strong data isolation and security while the account is active, but also provides a clean and complete data deletion path when a customer chooses to leave the platform.
Active Account Isolation & Security
Each customer’s data is stored in its own dedicated PostgreSQL schema, providing strict logical separation of customer data:
Network & Connection Security
Our database infrastructure is deployed within private subnets inside an AWS VPC:
Data Encryption at Rest and in Transit
All data stored in our database and file storage systems is encrypted at rest using AES-256 encryption, managed through AWS Key Management Service.
Data is also encrypted in transit using TLS, protecting all communication between application components.