releases
9 rows where repo = 274264484
This data as json, CSV (advanced)
Suggested facets: created_at (date), published_at (date)
id ▼ | html_url | author | node_id | tag_name | target_commitish | name | draft | prerelease | created_at | published_at | body | repo | reactions | mentions_count |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
27807602 | https://github.com/simonw/sqlite-generate/releases/tag/0.1 | simonw 9599 | MDc6UmVsZWFzZTI3ODA3NjAy | 0.1 | main | 0.1 | 0 | 0 | 2020-06-22T23:43:36Z | 2020-06-22T23:44:09Z | First release. | sqlite-generate 274264484 | ||
27809107 | https://github.com/simonw/sqlite-generate/releases/tag/0.2 | simonw 9599 | MDc6UmVsZWFzZTI3ODA5MTA3 | 0.2 | main | 0.2 | 0 | 0 | 2020-06-23T01:07:25Z | 2020-06-23T01:08:58Z | - `--rows=5,50` option for changing the number of rows created per table. #2 - `--columns=8` option for changing the number of columns added to each table. #3 - `--seed=myseed` option for fixing the random number seed used to generate the database. #4 | sqlite-generate 274264484 | ||
27810197 | https://github.com/simonw/sqlite-generate/releases/tag/0.3 | simonw 9599 | MDc6UmVsZWFzZTI3ODEwMTk3 | 0.3 | main | 0.3 | 0 | 0 | 2020-06-23T02:16:57Z | 2020-06-23T02:17:45Z | - Added a progress bar. #5 | sqlite-generate 274264484 | ||
27811510 | https://github.com/simonw/sqlite-generate/releases/tag/0.3.1 | simonw 9599 | MDc6UmVsZWFzZTI3ODExNTEw | 0.3.1 | main | 0.3.1 | 0 | 0 | 2020-06-23T03:25:45Z | 2020-06-23T03:26:28Z | README now links to live demo at https://sqlite-generate-demo.datasette.io/ | sqlite-generate 274264484 | ||
27833127 | https://github.com/simonw/sqlite-generate/releases/tag/0.4 | simonw 9599 | MDc6UmVsZWFzZTI3ODMzMTI3 | 0.4 | main | 0.4 | 0 | 0 | 2020-06-23T14:54:36Z | 2020-06-23T14:55:05Z | Can now generate random foreign key columns, controlled by the new `--fks` option. #7 | sqlite-generate 274264484 | ||
27840931 | https://github.com/simonw/sqlite-generate/releases/tag/0.4.1 | simonw 9599 | MDc6UmVsZWFzZTI3ODQwOTMx | 0.4.1 | main | 0.4.1 | 0 | 0 | 2020-06-23T18:03:41Z | 2020-06-23T18:04:41Z | * Fixed bug with foreign key generation when running the tool multiple times against the same database. #10 * Fixed bug generating foreign keys against empty tables. #11 | sqlite-generate 274264484 | ||
27843994 | https://github.com/simonw/sqlite-generate/releases/tag/1.0 | simonw 9599 | MDc6UmVsZWFzZTI3ODQzOTk0 | 1.0 | main | 1.0 | 0 | 0 | 2020-06-23T19:24:01Z | 2020-06-23T19:24:39Z | Added `--fts` (and `--fts4`) option for configuring full-text search against generated text columns. #9 | sqlite-generate 274264484 | ||
27847529 | https://github.com/simonw/sqlite-generate/releases/tag/1.1 | simonw 9599 | MDc6UmVsZWFzZTI3ODQ3NTI5 | 1.1 | main | 1.1 | 0 | 0 | 2020-06-23T20:56:50Z | 2020-06-23T20:58:34Z | * `--columns` can now accept a range, e.g. `--columns 2,10`. #12 * Can now generate rowid or compound primary key tables using the new `--pks` option. `--pks 0` produces rowid tables, `--pks=2` produces compound primary keys, and `--pks=0,2` produces different primary key configurations randomly. #8 | sqlite-generate 274264484 | ||
27848396 | https://github.com/simonw/sqlite-generate/releases/tag/1.1.1 | simonw 9599 | MDc6UmVsZWFzZTI3ODQ4Mzk2 | 1.1.1 | main | 1.1.1 | 0 | 0 | 2020-06-23T21:23:27Z | 2020-06-23T21:23:47Z | - Fixed a minor bug in the documentation. | sqlite-generate 274264484 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [releases] ( [html_url] TEXT, [id] INTEGER PRIMARY KEY, [author] INTEGER REFERENCES [users]([id]), [node_id] TEXT, [tag_name] TEXT, [target_commitish] TEXT, [name] TEXT, [draft] INTEGER, [prerelease] INTEGER, [created_at] TEXT, [published_at] TEXT, [body] TEXT, [repo] INTEGER REFERENCES [repos]([id]) , [reactions] TEXT, [mentions_count] INTEGER); CREATE INDEX [idx_releases_repo] ON [releases] ([repo]); CREATE INDEX [idx_releases_author] ON [releases] ([author]);