This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
0.19.3
Drizzle Studio
New cli command is available drizzle-kit studio
Drizzle Studio is a helper for data visualization. It seamlessly integrates with your existing data infrastructure by reading the drizzle.config
file and establishing a connection to your specified database. Studio supports all drivers, including pg
, mysql2
, better-sqlite
, libsql
, and even turso
driver!
Available actions
- Retrieve a list of all tables in the schema.
- Obtain the row count for each table.
- Perform table selection with options such as limit, offset, filters, and partial select.
- View all relations defined by the
Relational Queries
utility. - Create, update, and delete entities from tables.
- Benefit from basic type validation.
Available cli options
--port=3000
- By default, Drizzle will use port4983
, but you can specify any port you desire--verbose
- With this flag, you can print all statements that Drizzle Studio will execute while you browse through your data
For more information please check: https://driz.li/meet-studio
Improvements Roadmap
- Enhance validations with helpers such as datepicker, JSON validation, and more.
- Expand the range of filter options available.
- Introduce a schema change listener.
- And much more!
Bug fixes
- Correct the wrong typing option for SQLite
generate
andpush
commands when using autoincrement. - Address the SQLite
push
issue that generates incorrect defaults for booleans. - Resolve the SQLite
push
issue where unnecessary migrations are generated for composite primary keys.