Comment by mrkeen

Comment by mrkeen 3 days ago

1 reply

So we've shifted from:

  SQL now (for dev experience) && no-SQL later (for scaling)
to:

  no-SQL initially (for *much better* dev experience) && no-SQL later (for scaling)
I can get behind that.

> When your objects are inconsistently shaped something has to fix them

They have one schema (the class file) instead of two (the class file and the SQL migrations).

mulmen 3 days ago

> They have one schema (the class file) instead of two (the class file and the SQL migrations).

But what happens when that schema defining class file needs to change? You put all your migration code there? How is that different from SQL migrations?