-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from CivicActions/feature/PGOV-313-Organizatio…
…ns-and-divisions Feature/pgov 313 organizations and divisions
- Loading branch information
Showing
251 changed files
with
12,629 additions
and
524 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,5 @@ | ||
#!/bin/bash | ||
|
||
# Refer to the root-level migrate script to run site migrations. | ||
|
||
bin/migrate |
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
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,24 @@ | ||
#!/bin/bash | ||
|
||
export DRUSH_ALLOW_XDEBUG=1 | ||
|
||
# Respect changes to original migrations during development. | ||
drush ci --partial --source=modules/custom/pgov_migrate/migrations/ -y | ||
|
||
# Run all migrations to bootstrap a fresh install with data from Airtable | ||
|
||
drush migrate:import topics | ||
drush migrate:import designations | ||
drush migrate:import agencies | ||
drush migrate:import divisions | ||
drush migrate:import coalitions | ||
drush migrate:import goals | ||
drush migrate:import subgoals | ||
drush migrate:import objectives | ||
drush migrate:import projects | ||
drush migrate:import milestones | ||
# Skip updates until we have values for 'title' | ||
# drush migrate:import updates | ||
drush migrate:import plans | ||
|
||
drush migrate:status |
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
Oops, something went wrong.