uuid_attribute 0.9.1 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/uuid_attribute/railtie.rb +8 -9
- data/lib/uuid_attribute/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 774e0a7f8718a8ddebac22f16361b0810ab4b5c8fd3e26673a9c4a33ccdd8457
|
4
|
+
data.tar.gz: 706e1a5a27bfb7ea5aac225e7a54d0fad184a03820db52aafb24e05b387d7e85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 434c3f61c16c9ccc072df2bc579a78dc4135e50b626e325277f22c323a75572d573aae5e310c1f8e2d50d2782fe1fbc84cd8d0d036be4f534f4e31c0fdc95e5d
|
7
|
+
data.tar.gz: 7fbd5c029acfeeb56ca7f87b5456d8b75d9a05142aaf8c7c43ff8a2f31498e0b39ad02830802a38e12f2d9f2d55d425c92648f19cacc8bf351f6f5fedd151a57
|
@@ -51,24 +51,23 @@ module UuidAttribute
|
|
51
51
|
end
|
52
52
|
end
|
53
53
|
rescue ActiveRecord::NoDatabaseError
|
54
|
-
puts "NO DATABASE"
|
55
54
|
false
|
56
55
|
else
|
57
|
-
puts "CONFIGURE BINARY"
|
58
56
|
true
|
59
57
|
end
|
60
58
|
end
|
61
59
|
|
62
60
|
config.after_initialize do
|
63
|
-
|
64
|
-
|
61
|
+
unless ARGV.include? "assets:precompile"
|
62
|
+
ActiveRecord::Type.register(:uuid, ::UuidAttribute::UUID)
|
65
63
|
|
66
|
-
|
64
|
+
configure_binary_ids if UuidAttribute.auto_detect_binary_ids
|
67
65
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
66
|
+
if UuidAttribute.default_primary_id
|
67
|
+
# Configure UUID as Default Primary Key
|
68
|
+
Rails&.application&.config&.generators do |g|
|
69
|
+
g.orm :active_record, primary_key_type: "binary, limit: 16"
|
70
|
+
end
|
72
71
|
end
|
73
72
|
end
|
74
73
|
end
|