File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 22
33Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
44
5+ ## 0.1.2 - 2022-08-26
6+ ### Added
7+ + Added ` attribute_blob ` as ` longblob ` in the Attribute tables - support storing non-string types of data
8+
59## 0.1.1 - 2022-06-10
610### Added
711+ NotImplementedError where Imported tables do not offer make function
Original file line number Diff line number Diff line change @@ -78,8 +78,9 @@ class Attribute(dj.Part):
7878 -> master
7979 attribute_name : varchar(32)
8080 ---
81- attribute_value : varchar(2000)
82- """
81+ attribute_value='': varchar(2000)
82+ attribute_blob=null: longblob
83+ """
8384
8485 def make (self , key ):
8586 raise NotImplementedError ("For `insert`, use `allow_direct_insert=True`" )
@@ -110,8 +111,9 @@ class Attribute(dj.Part):
110111 -> master
111112 attribute_name : varchar(32)
112113 ---
113- attribute_value : varchar(2000)
114- """
114+ attribute_value='': varchar(2000)
115+ attribute_blob=null: longblob
116+ """
115117
116118 def make (self , key ):
117119 raise NotImplementedError ("For `insert`, use `allow_direct_insert=True`" )
Original file line number Diff line number Diff line change 11"""Package metadata."""
2- __version__ = "0.1.1 "
2+ __version__ = "0.1.2 "
You can’t perform that action at this time.
0 commit comments