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
8 changes: 4 additions & 4 deletions src/explanation/whats-new-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DataJoint 2.0 is a major release that establishes DataJoint as a mature framewor

> **📘 Upgrading from legacy DataJoint (pre-2.0)?**
>
> This page summarizes new features and concepts. For step-by-step migration instructions, see the **[Migration Guide](../how-to/migrate-from-0x.md)**.
> This page summarizes new features and concepts. For step-by-step migration instructions, see the **[Migration Guide](../how-to/migrate-to-v20.md)**.

## Overview

Expand All @@ -27,7 +27,7 @@ If you're upgrading from legacy DataJoint, these changes require code updates:
| **Type syntax** | `longblob`, `int unsigned` | `<blob>`, `uint32` |
| **Jobs** | `~jobs` table | Per-table `~~table_name` |

See the [Migration Guide](../how-to/migrate-from-0x.md) for complete upgrade steps.
See the [Migration Guide](../how-to/migrate-to-v20.md) for complete upgrade steps.

## Object-Augmented Schema (OAS)

Expand Down Expand Up @@ -228,7 +228,7 @@ DataJoint 2.0 is licensed under the **Apache License 2.0** (previously LGPL-2.1)

## Migration Path

→ **[Complete Migration Guide](../how-to/migrate-from-0x.md)**
→ **[Complete Migration Guide](../how-to/migrate-to-v20.md)**

Upgrading from DataJoint 0.x is a **phased process** designed to minimize risk:

Expand Down Expand Up @@ -272,7 +272,7 @@ Most users complete Phases 1-2 in a single session. Phases 3-4 only apply if you
## See Also

### Migration
- **[Migration Guide](../how-to/migrate-from-0x.md)** — Complete upgrade instructions
- **[Migration Guide](../how-to/migrate-to-v20.md)** — Complete upgrade instructions
- [Configuration](../how-to/configure-database.md) — Setup new configuration system

### Core Concepts
Expand Down
2 changes: 1 addition & 1 deletion src/how-to/alter-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,4 +237,4 @@ test_schema = dj.Schema('test_' + schema.database)
## See Also

- [Define Tables](define-tables.md) — Table definition syntax
- [Migrate from 0.x](migrate-from-0x.md) — Version migration
- [Migrate to v2.0](migrate-to-v20.md) — Version migration
2 changes: 1 addition & 1 deletion src/how-to/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ they assume you understand the basics and focus on getting things done.

## Maintenance

- [Migrate from 0.x](migrate-from-0x.md) — Upgrading existing pipelines
- [Migrate to v2.0](migrate-to-v20.md) — Upgrading existing pipelines
- [Alter Tables](alter-tables.md) — Schema evolution
- [Backup and Restore](backup-restore.md) — Data protection
2 changes: 1 addition & 1 deletion src/reference/specs/autopopulate.md
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ slow = Analysis & '_job_duration > 3600'

## 15. Migration from Legacy DataJoint

DataJoint 2.0 replaces the schema-level `~jobs` table with per-table `~~table_name` jobs tables. See the [Migration Guide](../../how-to/migrate-from-0x.md#autopopulate-20) for details.
DataJoint 2.0 replaces the schema-level `~jobs` table with per-table `~~table_name` jobs tables. See the [Migration Guide](../../how-to/migrate-to-v20.md) for details.

---

Expand Down