Atom Tables Documentation

Getting Started

Welcome to Atom Tables! This guide will help you get started with our platform.

  1. Create an account on our website.
  2. Verify your email address.
  3. 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' }
 ]
};