motherduck-supasync 1.0.5

A Rust CLI for syncing Supabase PostgreSQL data to MotherDuck for analytics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[
  {
    "source": "staging_users",
    "target": "full_users",
    "pk": ["id"],
    "columns": ["id", "name", "email", "created_at"],
    "order_by": "created_at"
  },
  {
    "source": "staging_posts",
    "target": "full_posts",
    "pk": ["id"],
    "mappings": {"profile_id": "user_id"},
    "order_by": "created_at"
  }
]