【问题标题】:Is it possible to alter a table to include reference to an upstream table in datajoint for python?是否可以更改表以包含对 python 数据联合中上游表的引用?
【发布时间】:2023-04-08 00:28:01
【问题描述】:

我们希望更改一个表以包含对新表的非主键引用。旧定义是:

@schema
class SpikeSortingParameters(dj.Manual):
    definition = """
    # Table for holding parameters for each spike sorting run
    -> SortGroup
    -> SpikeSorterParameters
    -> SortInterval
    ---
    -> SpikeSortingMetrics
    -> IntervalList
    import_path = '': varchar(200) # optional path to previous curated sorting output
    """

我们想添加

-> SpikeSortingArtifactParameters 

作为非主键,在我们花时间尝试让它工作之前,我们想知道是否有可能,因为我们不知道在这里分配默认值的方法。

提前谢谢...

罗兰

【问题讨论】:

    标签:
    alter
    datajoint