Wednesday, July 17, 2024

How to be steady on vacation mode and dog fooding

 I'm going to try to do at least one little thing every day while on vacation mode and then report here.

Today I made it more convenient to make a new query from the schema by changing the default query when you click on a field from 

SELECT [field] from [table] limit 1;

to 

SELECT * from [table] where [field]=? limit 10;

Then from there you can replace the question mark.

It's much more common that I care about a column name because I want to use it as a filter than that I care about it because I want to look at only that column.  In fact, the latter pretty much never happens!

So that's the good thing about dog fooding and then coding.

No comments:

Post a Comment

Moving from ids to slugs

Slugs are nicer to look at and easier to quickly understand so we're transitioning to them! Should have planned them in from the beginni...