Class: CreateRedirects

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/templates/db/migrate/create_redirects.rb

Class Method Summary collapse

Class Method Details

.downObject



11
12
13
# File 'lib/generators/templates/db/migrate/create_redirects.rb', line 11

def self.down
  drop_table :redirects
end

.upObject



3
4
5
6
7
8
9
# File 'lib/generators/templates/db/migrate/create_redirects.rb', line 3

def self.up
  create_table :redirects do |t|
    t.string :old_url
    t.string :new_url
    t.timestamps
  end
end