Skip to content

Commit bc0a59e

Browse files
committed
Release 0.2.2
1 parent 230b5a7 commit bc0a59e

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.2.2 2017-08-05
4+
5+
* Support Rails 5.1 primary key UUIDs that rely on gen_random_uuid()
6+
7+
38
## 0.2.1 2017-06-30
49

510
* Allow primary keys to be the last column of a table [Clemens Kofler](https://github.com/clemens)

Gemfile.lock

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
PATH
22
remote: .
33
specs:
4-
activerecord-clean-db-structure (0.2.1)
4+
activerecord-clean-db-structure (0.2.2)
55
activerecord (>= 4.2)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
activemodel (5.1.0)
11-
activesupport (= 5.1.0)
12-
activerecord (5.1.0)
13-
activemodel (= 5.1.0)
14-
activesupport (= 5.1.0)
10+
activemodel (5.1.2)
11+
activesupport (= 5.1.2)
12+
activerecord (5.1.2)
13+
activemodel (= 5.1.2)
14+
activesupport (= 5.1.2)
1515
arel (~> 8.0)
16-
activesupport (5.1.0)
16+
activesupport (5.1.2)
1717
concurrent-ruby (~> 1.0, >= 1.0.2)
1818
i18n (~> 0.7)
1919
minitest (~> 5.1)
2020
tzinfo (~> 1.1)
2121
arel (8.0.0)
2222
concurrent-ruby (1.0.5)
23-
i18n (0.8.1)
24-
minitest (5.10.1)
23+
i18n (0.8.6)
24+
minitest (5.10.3)
2525
thread_safe (0.3.6)
2626
tzinfo (1.2.3)
2727
thread_safe (~> 0.1)
@@ -33,4 +33,4 @@ DEPENDENCIES
3333
activerecord-clean-db-structure!
3434

3535
BUNDLED WITH
36-
1.12.5
36+
1.15.3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ActiveRecordCleanDbStructure
2-
VERSION = '0.2.1'
2+
VERSION = '0.2.2'
33
end

0 commit comments

Comments
 (0)