-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EDM-512/Migrations for ojt_app_type column (#1292)
* Create migrations * Run migrations * run migration --------- Co-authored-by: nfstern02 <[email protected]>
- Loading branch information
1 parent
1271d65
commit 1671352
Showing
4 changed files
with
89 additions
and
2 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 @@ | ||
class AddOjtAppTypeToPrograms < ActiveRecord::Migration[7.1] | ||
def change | ||
add_column :programs, :ojt_app_type, :string | ||
end | ||
end |
5 changes: 5 additions & 0 deletions
5
db/migrate/20250115202857_add_ojt_app_type_to_institution_programs.rb
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 @@ | ||
class AddOjtAppTypeToInstitutionPrograms < ActiveRecord::Migration[7.1] | ||
def change | ||
add_column :institution_programs, :ojt_app_type, :string | ||
end | ||
end |
5 changes: 5 additions & 0 deletions
5
db/migrate/20250115202913_add_ojt_app_type_to_institution_programs_archives.rb
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 @@ | ||
class AddOjtAppTypeToInstitutionProgramsArchives < ActiveRecord::Migration[7.1] | ||
def change | ||
add_column :institution_programs_archives, :ojt_app_type, :string | ||
end | ||
end |
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