active_record_store 0.1.0 → 0.2.0
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/app/models/ar_store.rb +1 -1
- data/db/migrate/20130805003710_create_ar_stores.rb +3 -3
- data/db/migrate/20130806003711_add_indices.rb +1 -1
- data/db/migrate/20130901003711_add_expiration_flag.rb +1 -1
- data/db/migrate/20130906003711_change_expires.rb +1 -1
- data/lib/active_record_store/version.rb +1 -1
- metadata +1 -2
- data/db/migrate/20130805003711_add_updated_at_index.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4dd888da34863b25fd46e21143960495a5c2cea47cf5fc77e686b3932e40cc54
|
4
|
+
data.tar.gz: 3caeb00547169313a36131a8352f32beac83b5b219a44011d2fcedfe9d1eef85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b51e93f273d1f36805020549099f8ca87b513db5215dec645977459680ee9e6fde65d533b54c391301066a6f673598e648b51e7cb6fecbbbe9f988f86e4aafc
|
7
|
+
data.tar.gz: d18409eea4ff7a80548af3882daca1d6fca356a66d2f53c4bf9792c2f3d374c4c6afacda90d165a7343ca0eadecb31ad53650d24d709e24fe9c8aca564e00e11
|
data/app/models/ar_store.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
class CreateArStores < ActiveRecord::Migration
|
1
|
+
class CreateArStores < ActiveRecord::Migration[6.0]
|
2
2
|
|
3
3
|
def change
|
4
|
-
create_table :ar_stores do |t|
|
4
|
+
create_table :ar_stores, id: :uuid do |t|
|
5
5
|
t.binary :key, null: false
|
6
6
|
t.binary :value, null: false
|
7
7
|
|
8
8
|
t.index :key
|
9
9
|
|
10
|
-
t.
|
10
|
+
t.timestamps
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_record_store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Sharpe
|
@@ -27,7 +27,6 @@ files:
|
|
27
27
|
- active_record_store.gemspec
|
28
28
|
- app/models/ar_store.rb
|
29
29
|
- db/migrate/20130805003710_create_ar_stores.rb
|
30
|
-
- db/migrate/20130805003711_add_updated_at_index.rb
|
31
30
|
- db/migrate/20130806003711_add_indices.rb
|
32
31
|
- db/migrate/20130901003711_add_expiration_flag.rb
|
33
32
|
- db/migrate/20130906003711_change_expires.rb
|