Thanks to visit codestin.com
Credit goes to github.com

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
13 changes: 13 additions & 0 deletions schemas/+lab/Paths.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
%{
lab.Paths (lookup) # Path translation
global : varchar(255) # global path name
---
linux : varchar(255) # linux path name
windows : varchar(255) # windows path name
mac : varchar(255) # mac path name
location : varchar(255) # computer path
%}


classdef Paths < dj.Relvar
end
7 changes: 7 additions & 0 deletions schemas/+lab/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, 'lab', 'common_lab');
end
obj = schemaObject;
end