From abd309175bc3e0193bc7d68b5706349080f146b3 Mon Sep 17 00:00:00 2001 From: guzman-raphael Date: Tue, 31 Mar 2020 07:51:31 -0500 Subject: [PATCH] Update based on review. --- +dj/+internal/Declare.m | 2 +- +tests/test_schemas/+University/All.m | 2 +- setupDJ.m | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/+dj/+internal/Declare.m b/+dj/+internal/Declare.m index f0ebbc11..73013b9f 100644 --- a/+dj/+internal/Declare.m +++ b/+dj/+internal/Declare.m @@ -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@(?[a-z]\w*)$', ... + 'EXTERNAL_BLOB', '^blob@(?[a-z]\w*)$', ... 'UUID', 'uuid$' ... ) SPECIAL_TYPES = {'UUID', 'EXTERNAL_BLOB'} diff --git a/+tests/test_schemas/+University/All.m b/+tests/test_schemas/+University/All.m index 16766659..bf92d8cc 100644 --- a/+tests/test_schemas/+University/All.m +++ b/+tests/test_schemas/+University/All.m @@ -2,7 +2,7 @@ # All id : int --- -string=null : varchar(30) +string='' : varchar(30) date=null : datetime number=null : float blob=null : longblob diff --git a/setupDJ.m b/setupDJ.m index 1d721ffe..3222557e 100644 --- a/setupDJ.m +++ b/setupDJ.m @@ -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