polo icon indicating copy to clipboard operation
polo copied to clipboard

Polo travels through your database and creates sample snapshots so you can work with real world data in development.

Results 17 polo issues
Sort by recently updated
recently updated
newest added

Implemented two ways, ### 1. "naive upsert" for pg < 9.5 insert into, on exception update all the things. ### 2. real upsert since 9.5 INSERT INTO .... ON CONFLICT...

Is anyone at IFTTT still maintaining this? Master branch has some changes that would be nice to have in a release but in #54 @nettofarah mentioned being unable to publish...

Similar to #50, it looks like Rails 6 has broken/removed `attributes_with_values_for_create` ``` NoMethodError: undefined method `attributes_with_values_for_create' for # ```

Seeing the following error. Is this not supported on Rails 5.2? ``` NoMethodError (undefined method `arel_attributes_with_values_for_create' for #) ```

I realized that after restoring the dump file generated by Polo, I still had to reset the id sequences postgres uses to determine the next id for a new record....

I'm curious to know what cool stuff people are using Polo for. - What environments are you generating data for? - What version of Rails? - How big is your...

question

Title perhaps doesn't explain the problem well, code does: ``` ruby class Account has_and_belongs_to_many :roles end class Role has_and_belongs_to_many :accounts end account = Account.create name: "Matt" role = Role.create name:...

We currently run all of our tests using SQLite in memory. While this runs super fast and works great it doesn't really test Polo against some specific scenarios such as...

enhancement
help wanted

Currently Polo's usage goes by `Polo.explore(Product, 1)`. But, in some cases you might not be wanting to look for an specific ID but for objects that have a specific type...

Provide some examples (documentation or ruby files) with some common use cases. e.g. - Rake task to pull some complex data relationships - Code snippet of how to export generated...

help wanted