dbdev VS pgroll

Compare dbdev vs pgroll and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
dbdev pgroll
4 14
330 2,549
2.1% 5.3%
9.4 9.4
15 days ago 4 days ago
PLpgSQL Go
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

dbdev

Posts with mentions or reviews of dbdev. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-08.
  • Building a Managed Postgres Service in Rust
    5 projects | news.ycombinator.com | 8 Apr 2024
  • Jonathan Katz: Thoughts on PostgreSQL in 2024
    3 projects | news.ycombinator.com | 2 Jan 2024
    I didn't know about extension repositories like https://database.dev/. What less-known extensions are people here using? I'm curious because there might be extensions that simplify common tasks in ways I'm unaware of.
  • Tracking User Data with Fingerprint and Supabase in PostgreSQL
    2 projects | dev.to | 14 Jun 2023
    Before we begin, you'll need to install dbdev and pg_headerkit. dbdev is a PostgreSQL package manager provided by database.dev. It allows publishing libraries and applications for repeatable deployment in PostgreSQL, similar to npm for JavaScript, pip for Python, or cargo for Rust. With dbdev, you can manage and discover SQL packages, making it easier to extend and enhance your PostgreSQL projects.
  • SPARTAN. Type-safe Angular full-stack development powered by Analog.
    16 projects | dev.to | 25 Apr 2023
    Supabase just wrapped up their Launch Week 7 with a ton of incredible features. This includes an AI assistant that was added to their premium platform. It is aware of your database design and can help you when creating more complex SQL queries. I'm even more thrilled by their most recent releases of outstanding open source projects, such as the PostgreSQL package manager database.dev. dbdev serves the same purpose for PostgreSQL that npm does for JavaScript. It gives your PostgresSQL database incredibly easy access to packages that give your DB superpowers like full-text search or one-time-only-read data access à la Snapchat. The best thing is that dbdev can load any PostgreSQL instance that has the required fundamental extensions, independent of the Supabase platform. Again, the code is open source. I can't wait to see where this project goes in the future, and I have no doubt that we will soon be able to utilize a lot more fantastic libraries. Like Brandon Roberts puts it:

pgroll

Posts with mentions or reviews of pgroll. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-08.
  • Building a Managed Postgres Service in Rust
    5 projects | news.ycombinator.com | 8 Apr 2024
    I thought I recognized xataio - they submitted pgroll a few months back https://news.ycombinator.com/item?id=37752366 (https://github.com/xataio/pgroll - Apache 2)
  • Revolutionizing PostgreSQL Schema Changes with pg-osc
    1 project | news.ycombinator.com | 18 Feb 2024
  • PostgreSQL zero-downtime and reversible migrations
    1 project | news.ycombinator.com | 30 Jan 2024
  • How pgroll works under the hood
    1 project | dev.to | 7 Dec 2023
    At the start of October we released pgroll, an open source tool for zero-downtime, reversible schema migrations for Postgres.
  • Introducing pgroll: zero-downtime, reversible, schema migrations for Postgres
    1 project | dev.to | 3 Oct 2023
    If you have any suggestions or questions, please open an issue in our GitHub repo, reach out to us on Discord or follow us on X / Twitter. We'd love to hear from you and keep you up to date with the latest progress on pgroll.
  • Pgroll: zero-downtime, undoable, schema migrations for Postgres
    15 projects | news.ycombinator.com | 3 Oct 2023
    Any pgroll operations[0] that require a change to an existing column, such as adding a constraint, will create a new copy of the column and backfill it using 'up' SQL defined in the migration and apply the change to that new column.

    There are no operations that will modify the data of an existing column in-place, as this would violate the invariant that the old schema must remain usable alongside the new one.

    [0] - https://github.com/xataio/pgroll/tree/main/docs#operations-r...

  • Database Migrations
    2 projects | news.ycombinator.com | 1 Oct 2023
    This is a fantastic article! It shows that even simple migrations (like adding or removing a column) can be quite tricky to deploy in concert with the application deployement.

    We (at Xata) have tried for a while to come up with a generic schema migration system for PostgreSQL that makes this easier. We ended up using views and temporary columns in such a way that we can provide both the "old" and the "new" schema simultaneously. Up/down triggers convert newly inserted data from old to new and the other way around. This also has the advantage the it can do rollbacks instantly by just dropping the "new" view.

    We were just planning to announce this as an open source project this week, but actually it is already public, so if you are curious: https://github.com/xataio/pgroll

What are some alternatives?

When comparing dbdev and pgroll you can also consider the following projects:

ng-signal-forms

migrate - Database migrations. CLI and Golang library.

trpc - 🧙‍♀️ Move Fast and Break Nothing. End-to-end typesafe APIs made easy.

reshape - An easy-to-use, zero-downtime schema migration tool for Postgres

spartan - Cutting-edge tools powering Angular full-stack development.

bob - SQL query builder and ORM/Factory generator for Go with support for PostgreSQL, MySQL and SQLite

mysql-5.6 - Facebook's branch of the Oracle MySQL database. This includes MyRocks.

postgres_migrator - A postgres migration generator and runner that uses raw declarative sql.

Prisma - Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB

tusker - PostgreSQL migration management tool

sql-examples - Curated list of SQL to help you find useful script easily 🚀

migra - Like diff but for PostgreSQL schemas