6 lines
155 B
6 lines
155 B
5 years ago
|
class AddTeamTitleToSubjects < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :subjects, :team_title, :string, default: "教学团队"
|
||
|
end
|
||
|
end
|