Class: CreateUrlsTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateUrlsTable
- Defined in:
- lib/generators/mongoid/templates/my_table.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
9 10 11 |
# File 'lib/generators/mongoid/templates/my_table.rb', line 9 def self.down drop_table :urls end |
.up ⇒ Object
2 3 4 5 6 7 |
# File 'lib/generators/mongoid/templates/my_table.rb', line 2 def self.up create_table :urls, :force => true do |t| t.string :address t.date :visit_date end end |