EddytorDocs & API
07 · Tables A→ZC · Create the table

Verify it exists

Confirm a table was created and inspect its schema, constraints, and version.

After creating a table, confirm it's there and inspect what Eddytor recorded - its schema, keys, constraints, and current version.

List & confirm

eddytor get tables                              # list discovered tables
eddytor describe table eddytor sales orders     # schema, columns, constraints
list_tables()                       # FQNs, storage_path, config_id, table_id
get_table_metadata(table="eddytor.cfg_xxx.<uuid>_orders")

What metadata shows

  • get_table_schema - column names, Arrow types, nullability.
  • get_table_metadata - constraints, primary keys, current version, description.
  • list_tables - the FQN, storage_path, config_id, and the stable table_id.

Resolve by id

If you have a table_id but not the current FQN (e.g. after a move):

resolve_table(table_id="abc123…")

Verify checklist

  • The table appears in list_tables / eddytor get tables.
  • The schema matches what you defined (right types, PK set).
  • Current version is 0 (CREATE TABLE) on a fresh table - see table history.

Next

On this page