6 lines
111 B
Ruby
6 lines
111 B
Ruby
|
class RemoveCityFromSchools < ActiveRecord::Migration
|
||
|
def change
|
||
|
remove_column :schools, :city
|
||
|
end
|
||
|
end
|