-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17320c6
commit 89e6c12
Showing
38 changed files
with
500 additions
and
449 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
9 changes: 9 additions & 0 deletions
9
db/migrate/20240131140455_change_column_major_to_normal_case.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,9 @@ | ||
# frozen_string_literal: true | ||
|
||
class ChangeColumnMajorToNormalCase < ActiveRecord::Migration[7.1] | ||
def change | ||
rename_column :majors, :jurusan_1, :jurusan1 | ||
rename_column :majors, :jurusan_2, :jurusan2 | ||
rename_column :majors, :jurusan_3, :jurusan3 | ||
end | ||
end |
14 changes: 14 additions & 0 deletions
14
db/migrate/20240131143459_change_column_pmdk_each_to_normal_case.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,14 @@ | ||
# frozen_string_literal: true | ||
|
||
class ChangeColumnPmdkEachToNormalCase < ActiveRecord::Migration[7.1] | ||
def change | ||
rename_column :pmdk_each_score_informations, :matematika_semester_1, | ||
:matematika_semester1 | ||
rename_column :pmdk_each_score_informations, :matematika_semester_2, | ||
:matematika_semester2 | ||
rename_column :pmdk_each_score_informations, :matematika_semester_3, | ||
:matematika_semester3 | ||
rename_column :pmdk_each_score_informations, :matematika_semester_4, | ||
:matematika_semester4 | ||
end | ||
end |
38 changes: 38 additions & 0 deletions
38
db/migrate/20240131145828_rename_column_pmdk_each_to_normal_case.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,38 @@ | ||
# frozen_string_literal: true | ||
|
||
class RenameColumnPmdkEachToNormalCase < ActiveRecord::Migration[7.1] | ||
def change | ||
rename_column :pmdk_each_score_informations, :matematika_semester_5, | ||
:matematika5 | ||
rename_column :pmdk_each_score_informations, :fisika_semester_1, | ||
:fisika1 | ||
rename_column :pmdk_each_score_informations, :fisika_semester_2, | ||
:fisika2 | ||
rename_column :pmdk_each_score_informations, :fisika_semester_3, | ||
:fisika3 | ||
rename_column :pmdk_each_score_informations, :fisika_semester_4, | ||
:fisika4 | ||
rename_column :pmdk_each_score_informations, :fisika_semester_5, | ||
:fisika5 | ||
rename_column :pmdk_each_score_informations, :kimia_semester_1, | ||
:kimia1 | ||
rename_column :pmdk_each_score_informations, :kimia_semester_2, | ||
:kimia2 | ||
rename_column :pmdk_each_score_informations, :kimia_semester_3, | ||
:kimia3 | ||
rename_column :pmdk_each_score_informations, :kimia_semester_4, | ||
:kimia4 | ||
rename_column :pmdk_each_score_informations, :kimia_semester_5, | ||
:kimia5 | ||
rename_column :pmdk_each_score_informations, :inggris1, | ||
:inggris1 | ||
rename_column :pmdk_each_score_informations, :bahasa_inggris_semester_2, | ||
:inggri2 | ||
rename_column :pmdk_each_score_informations, :bahasa_inggris_semester_3, | ||
:inggris3 | ||
rename_column :pmdk_each_score_informations, :bahasa_inggris_semester_4, | ||
:inggris4 | ||
rename_column :pmdk_each_score_informations, :bahasa_inggris_semester_5, | ||
:inggris5 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
class RenameColumnInPmdk < ActiveRecord::Migration[7.1] | ||
def change | ||
rename_column :pmdk_each_score_informations, :inggri2, :inggris2 | ||
end | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.