github mayneyao/eidos v0.29.1

5 hours ago

New Cli Command

  • New table import command — Import JSON data to existing tables
eidos table import tb_xxxx --file data.json
cat data.json | eidos table tb_xxxx
  • New table create command — 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_source

Full Changelog: v0.29.0...v0.29.1

Don't miss a new eidos release

NewReleases is sending notifications on new releases.