tables from legacy to new through Django (with minimal cleaning to have the import go through) and removing migrations from submit and liaisons as they interfere with the clean slate of the new database, adjusting IPR model to add null=True on fields with nulls in the database - Legacy-Id: 3778
16 lines
339 B
Bash
Executable file
16 lines
339 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# basic dependencies
|
|
set -e
|
|
python import-persons.py
|
|
python import-states.py
|
|
python import-groups.py
|
|
python import-roles.py
|
|
|
|
python import-reused-tables.py
|
|
python import-meetings.py
|
|
python import-announcements.py
|
|
python import-docs.py
|
|
python import-ipr.py # sets up links to drafts/RFCs so needs them
|
|
python import-liaison.py
|