New Cli Command
- New
table importcommand — Import JSON data to existing tables
eidos table import tb_xxxx --file data.json
cat data.json | eidos table tb_xxxx- New
table createcommand — Create tables with schema inference
# Auto-infer schema from JSON
cat sample.json | eidos table create "My Table"
# Explicit field definition
eidos table create "Tasks" --fields "title:text,done:checkbox"
# Copy from template
eidos table create "New Table" --template tb_sourceFull Changelog: v0.29.0...v0.29.1