rubypitaya 3.19.2 → 3.19.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18140f25fcbb74be4d0d6903014f5e340b8a3f948604138c0e0e4fa1f3097424
|
4
|
+
data.tar.gz: b33020321f0ccba59e661547155588996628057333aff033bda1ccc21a12175a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1228431dfb5bc2d5ebd579251b9a2bdc6e7a9efcc84720bc3694bd21efdb78c07bf7c18effce78966fc4591ddb43e065ebf2979bb76fab4e4a62d0ed07cf24f6
|
7
|
+
data.tar.gz: 76fa80c15de8da13c3e9397dcba88da1df4064ab27546d66ed5fa8ff97a9576354d28cd894582fcbb00cedb34f5210953861e0f2e5ed4c61e2d36b8a454f2e4d
|
@@ -105,7 +105,7 @@ GEM
|
|
105
105
|
rspec-support (~> 3.13.0)
|
106
106
|
rspec-support (3.13.1)
|
107
107
|
ruby2_keywords (0.0.5)
|
108
|
-
rubypitaya (3.19.
|
108
|
+
rubypitaya (3.19.3)
|
109
109
|
activerecord (= 7.1.3.3)
|
110
110
|
etcdv3 (= 0.11.6)
|
111
111
|
google-protobuf (= 3.25.2)
|
@@ -144,7 +144,7 @@ DEPENDENCIES
|
|
144
144
|
listen (= 3.9.0)
|
145
145
|
pry (= 0.14.2)
|
146
146
|
rspec (= 3.13.0)
|
147
|
-
rubypitaya (= 3.19.
|
147
|
+
rubypitaya (= 3.19.3)
|
148
148
|
sinatra-contrib (= 3.2.0)
|
149
149
|
|
150
150
|
BUNDLED WITH
|
@@ -2,8 +2,11 @@ require 'active_record'
|
|
2
2
|
|
3
3
|
class CreateUserMigration < ActiveRecord::Migration[6.1]
|
4
4
|
|
5
|
+
enable_extension 'uuid-ossp' unless extension_enabled?('uuid-ossp')
|
6
|
+
|
5
7
|
def change
|
6
8
|
create_table :users do |t|
|
9
|
+
t.uuid :public_id, default: 'uuid_generate_v1()', null: false, index: { unique: true }
|
7
10
|
t.timestamps
|
8
11
|
end
|
9
12
|
end
|
data/lib/rubypitaya/version.rb
CHANGED