Atom Tables Documentation
Getting Started
Welcome to Atom Tables! This guide will help you get started with our platform.
- Create an account on our website.
- Verify your email address.
- Set up your first data model.
Data Modeling
Learn how to create complex data models with Atom Tables.
// Example data model
const dataModel = {
name: 'example',
fields: [
{ name: 'id', type: 'integer' },
{ name: 'name', type: 'string' }
]
};