026_add_redirect_table.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. class AddRedirectTable < ActiveRecord::Migration
  2.   def self.up
  3.     STDERR.puts "Adding Redirect Table"
  4.     create_table :redirects do |t|
  5.       t.column :from_path, :string
  6.       t.column :to_path, :string
  7.     end
  8.   end
  9.   def self.down
  10.     drop_table :redirects
  11.   end
  12. end