forked from LorenFrankLab/spyglass
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
255 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
"""A schema to store the usage of advanced Spyglass features. | ||
Records show usage of features such as table chains, which will be used to | ||
determine which features are used, how often, and by whom. This will help | ||
plan future development of Spyglass. | ||
""" | ||
import datajoint as dj | ||
|
||
schema = dj.schema("common_usage") | ||
|
||
|
||
@schema | ||
class CautiousDelete(dj.Manual): | ||
definition = """ | ||
id: int auto_increment | ||
--- | ||
dj_user: varchar(64) | ||
duration: float | ||
origin: varchar(64) | ||
restriction: varchar(64) | ||
merge_deletes = null: blob | ||
""" |
Oops, something went wrong.