datasette/datasette
Simon Willison 0cf91e3f88
Started playing with m2m options
This query is really slow. I think this pattern would be faster:

	select ads.id, ads.text, ads.url
	from ads
	  inner join ad_targets ad_targets_1 on ad_targets_1.ad_id = ads.id
	  inner join ad_targets ad_targets_2 on ad_targets_2.ad_id = ads.id
	  where ad_targets_1.target_id = "cd0d0"
	  and ad_targets_2.target_id = "26eb3"
	order by ads.id
2018-07-30 08:16:56 -07:00
..
publish publish_subcommand hook + default plugins mechanism, used for publish heroku/now (#349) 2018-07-25 22:15:59 -07:00
static Improved UI for CSV/JSON export, closes #266 2018-06-17 23:05:18 -07:00
templates URLify URLs in custom SQL queries, closes #298 2018-07-23 20:56:32 -07:00
views Started playing with m2m options 2018-07-30 08:16:56 -07:00
__init__.py Move version info back to separate module 2018-05-22 12:35:21 -07:00
_version.py Add version number support with Versioneer 2018-05-22 12:35:21 -07:00
app.py publish_subcommand hook + default plugins mechanism, used for publish heroku/now (#349) 2018-07-25 22:15:59 -07:00
cli.py publish_subcommand hook + default plugins mechanism, used for publish heroku/now (#349) 2018-07-25 22:15:59 -07:00
hookspecs.py publish_subcommand hook + default plugins mechanism, used for publish heroku/now (#349) 2018-07-25 22:15:59 -07:00
inspect.py Refactor inspect logic 2018-05-22 07:03:06 -07:00
utils.py "datasette publish heroku" improvements 2018-07-25 22:43:01 -07:00
version.py Move version info back to separate module 2018-05-22 12:35:21 -07:00