Froze rails gems
[depot.git] / vendor / rails / activerecord / test / migrations / missing / 1_people_have_last_names.rb
diff --git a/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb b/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb
new file mode 100644 (file)
index 0000000..81af5fe
--- /dev/null
@@ -0,0 +1,9 @@
+class PeopleHaveLastNames < ActiveRecord::Migration
+  def self.up
+    add_column "people", "last_name", :string
+  end
+
+  def self.down
+    remove_column "people", "last_name"
+  end
+end
\ No newline at end of file