Skip to content

Commit 5f074ab

Browse files
committed
Website formatting fix
1 parent f9aeb43 commit 5f074ab

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/src/sysadmin/external-store.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -255,19 +255,19 @@ to upgrade to DataJoint v0.12, the following process should be followed:
255255
5. Migrate external tracking tables for each schema to use the new format. For
256256
instance in Python:
257257

258-
```python
259-
import datajoint.migrate as migrate
260-
db_schema_name='schema_1'
261-
external_store='raw'
262-
migrate.migrate_dj011_external_blob_storage_to_dj012(db_schema_name, external_store)
263-
```
258+
```python
259+
import datajoint.migrate as migrate
260+
db_schema_name='schema_1'
261+
external_store='raw'
262+
migrate.migrate_dj011_external_blob_storage_to_dj012(db_schema_name, external_store)
263+
```
264264

265265
6. Verify pipeline functionality after this process has completed. For instance in
266266
Python:
267267

268-
```python
269-
x = myschema.TableWithExternal.fetch('external_field', limit=1)[0]
270-
```
268+
```python
269+
x = myschema.TableWithExternal.fetch('external_field', limit=1)[0]
270+
```
271271

272272
Note: This migration function is provided on a best-effort basis, and will
273273
convert the external tracking tables into a format which is compatible

0 commit comments

Comments
 (0)