Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
9 changes: 9 additions & 0 deletions matlab/external_storage/+external/Blob.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
%{
# This table is a toy example of how to save a blob field into the external location
id: int
-----
external_blob: blob@imaging
%}

classdef Blob < dj.Manual
end
7 changes: 7 additions & 0 deletions matlab/external_storage/+external/getSchema.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
function obj = getSchema
persistent schemaObject
if isempty(schemaObject)
schemaObject = dj.Schema(dj.conn, 'external', 'external');
end
obj = schemaObject;
end
Binary file added matlab/external_storage/set_up_dj_config.mlx
Binary file not shown.