README.md in pgslice-0.4.6 vs README.md in pgslice-0.4.7
- old
+ new
@@ -169,11 +169,11 @@
ALTER TABLE "public"."visits" RENAME TO "visits_retired";
ALTER TABLE "public"."visits_intermediate" RENAME TO "visits";
-ALTER SEQUENCE "visits_id_seq" OWNED BY "public"."visits"."id";
+ALTER SEQUENCE "public"."visits_id_seq" OWNED BY "public"."visits"."id";
COMMIT;
```
## Adding Partitions
@@ -381,17 +381,17 @@
- [Report bugs](https://github.com/ankane/pgslice/issues)
- Fix bugs and [submit pull requests](https://github.com/ankane/pgslice/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
-To get started with development and testing:
+To get started with development:
```sh
git clone https://github.com/ankane/pgslice.git
cd pgslice
bundle install
createdb pgslice_test
-bundle exec rake
+bundle exec rake test
```
To test against different versions of Postgres with Docker, use:
```sh