Hacker News new | ask | show | jobs
by ranguna 1333 days ago
This looks awesome!

I'm going to put this on my list of serverless sql DBs alongside neon and cockroach for sure.

Although I'm a bit bummed out because all sql syntax has been striped out, which makes sense, since we are no longer dealing with just sql here.

I got one question though, I see the api calls for migrations, but is there a step by step guide on how we can actually do a migration?

1 comments

> Although I'm a bit bummed out because all sql syntax has been striped out, which makes sense, since we are no longer dealing with just sql here.

Yes, we are hoping to add support for SQL as well, but we need to intermediate the API calls for a bunch of interesting features.

> I got one question though, I see the api calls for migrations, but is there a step by step guide on how we can actually do a migration?

We don't have docs for yet, but it's a UI driven process which resembles GitHub PRs, so it should be pretty straightforward.

> UI driven process

Interesting, although not something I personally like. I'm more used to doing this automatically through pipelines.

Are there any plans to add an automated process, without ui or anything like that?

Fully automated through the cli, like the terraform apply command or sequelize migrations.

Ah yes, that makes sense and we should be able to do that based on the API. The migrations are ultimately JSON documents.
Awesome!

Will monitor the docs page for this.