From ccca1f7f5fd5b2bf7d64a755451f6951a12e8f1e Mon Sep 17 00:00:00 2001 From: Wen Date: Tue, 18 Mar 2014 15:26:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A4=A7=E5=AD=A6=E8=A1=A8?= =?UTF-8?q?=EF=BC=8C=E5=88=A0=E9=99=A4=E5=88=97City?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/migrate/20140318072309_remove_city_from_schools.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20140318072309_remove_city_from_schools.rb diff --git a/db/migrate/20140318072309_remove_city_from_schools.rb b/db/migrate/20140318072309_remove_city_from_schools.rb new file mode 100644 index 000000000..c91413134 --- /dev/null +++ b/db/migrate/20140318072309_remove_city_from_schools.rb @@ -0,0 +1,5 @@ +class RemoveCityFromSchools < ActiveRecord::Migration + def change + remove_column :schools, :city + end +end