Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion +dj/+internal/Declare.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'NUMERIC', '^((tiny|small|medium|big)?int|decimal|double|float)', ...
'STRING', '^((var)?char|enum|date|(var)?year|time|timestamp)', ...
'INTERNAL_BLOB', '^(tiny|medium|long)?blob$', ...
'EXTERNAL_BLOB', 'blob@(?<store>[a-z]\w*)$', ...
'EXTERNAL_BLOB', '^blob@(?<store>[a-z]\w*)$', ...
'UUID', 'uuid$' ...
)
SPECIAL_TYPES = {'UUID', 'EXTERNAL_BLOB'}
Expand Down
2 changes: 1 addition & 1 deletion +tests/test_schemas/+University/All.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All
id : int
---
string=null : varchar(30)
string='' : varchar(30)
date=null : datetime
number=null : float
blob=null : longblob
Expand Down
2 changes: 1 addition & 1 deletion setupDJ.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function setupDJ(skipPathAddition, force)
fprintf('mym missing. Downloading...\n')
target = fullfile(base, 'mym.zip');
% mymURL = 'https://github.com/datajoint/mym/archive/master.zip';
mymURL = 'https://github.com/guzman-raphael/mym/archive/ext-serialize.zip';
mymURL = 'https://github.com/datajoint/mym/archive/external-storage.zip';
target = websave(target, mymURL);
if isunix && ~ismac
% on Linux Matlab unzip doesn't work properly so use system unzip
Expand Down