migration_rollinout 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +14 -2
- data/lib/migration_rollinout/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59a5dd010239d7ad30701d134805173c5da635eb
|
4
|
+
data.tar.gz: d3b0e6707d4f1736dfef917544d89a32b807163a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1b8b2e88a0d49f0f8d08d337140429c9fba9cbc18cdd641b514a0e6593ae35224cdb5f0e0ebdf1ea1a8d0aad6c78defde0dc9ff895d6c295a97e9c017612114
|
7
|
+
data.tar.gz: b5a7db40ef757ed69df5c57a5479feb02c461c69da219cc051e725c93d55ae666a414441936e6839ab8cc85bdff01ab60aba4eaa23d551b9055ff78bc6a50f23
|
data/README.md
CHANGED
@@ -1,8 +1,20 @@
|
|
1
1
|
# MigrationRollinout
|
2
2
|
|
3
|
-
|
3
|
+
This gem adds rake task:
|
4
|
+
|
5
|
+
```ruby
|
6
|
+
rake db:rollinout
|
7
|
+
```
|
8
|
+
|
9
|
+
It is a simple wrapper task for:
|
10
|
+
```ruby
|
11
|
+
rake db:migrate db:rollback db:migrate
|
12
|
+
```
|
13
|
+
|
14
|
+
Assures that your migration is reversable.
|
15
|
+
|
16
|
+
Makes life easier ;)
|
4
17
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
18
|
|
7
19
|
## Installation
|
8
20
|
|