entity_storage 2.1.5 → 2.1.6
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.
- data/History.txt +6 -0
- data/config/database.yml +1 -2
- data/lib/entity_storage.rb +2 -2
- data/test/test_entity_storage.rb +1 -0
- metadata +2 -1
data/History.txt
CHANGED
data/config/database.yml
CHANGED
data/lib/entity_storage.rb
CHANGED
@@ -9,7 +9,7 @@ require 'active_record'
|
|
9
9
|
|
10
10
|
|
11
11
|
module EntityStorage
|
12
|
-
VERSION = '2.1.
|
12
|
+
VERSION = '2.1.6'
|
13
13
|
|
14
14
|
class Storage
|
15
15
|
attr_accessor :defaults
|
@@ -78,7 +78,7 @@ module EntityStorage
|
|
78
78
|
|
79
79
|
def self.create
|
80
80
|
create_table "entity_storage", :force => true do |t|
|
81
|
-
t.string "key", :limit =>
|
81
|
+
t.string "key", :limit => 191, :null => false
|
82
82
|
#t.text "value"
|
83
83
|
t.binary "value"
|
84
84
|
t.datetime "created_at"
|
data/test/test_entity_storage.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: entity_storage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -116,3 +116,4 @@ specification_version: 3
|
|
116
116
|
summary: An easy to use Key/Value store for any Ruby on Rails project
|
117
117
|
test_files:
|
118
118
|
- test/test_entity_storage.rb
|
119
|
+
has_rdoc:
|