Skip to content

feat: Add a 3rd testing migration#1190

Merged
timmc-edx merged 1 commit into
mainfrom
timmc/migrtest3
Mar 16, 2026
Merged

feat: Add a 3rd testing migration#1190
timmc-edx merged 1 commit into
mainfrom
timmc/migrtest3

Conversation

@timmc-edx
Copy link
Copy Markdown
Member

SQL for forward migration:

BEGIN;
--
-- Rename field dummy_field2 on boms227 to dummy_field3
--
ALTER TABLE "edx_arch_experiments_boms227" RENAME COLUMN "dummy_field2" TO "dummy_field3";
COMMIT;

SQL for reverse migration:

BEGIN;
--
-- Rename field dummy_field2 on boms227 to dummy_field3
--
ALTER TABLE "edx_arch_experiments_boms227" RENAME COLUMN "dummy_field3" TO "dummy_field2";
COMMIT;

BOMS-227

Merge checklist:
Check off if complete or not applicable:

  • Version bumped
  • Changelog record added
  • Documentation updated (not only docstrings)
  • Fixup commits are squashed away
  • Unit tests added/updated
  • Manual testing instructions provided
  • Noted any: Concerns, dependencies, migration issues, deadlines, tickets

SQL for forward migration:

```
BEGIN;
--
-- Rename field dummy_field2 on boms227 to dummy_field3
--
ALTER TABLE "edx_arch_experiments_boms227" RENAME COLUMN "dummy_field2" TO "dummy_field3";
COMMIT;
```

SQL for reverse migration:

```
BEGIN;
--
-- Rename field dummy_field2 on boms227 to dummy_field3
--
ALTER TABLE "edx_arch_experiments_boms227" RENAME COLUMN "dummy_field3" TO "dummy_field2";
COMMIT;
```

BOMS-227
@timmc-edx timmc-edx merged commit 547f4ff into main Mar 16, 2026
6 checks passed
@timmc-edx timmc-edx deleted the timmc/migrtest3 branch March 16, 2026 21:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants