Sha256: 7f447629e17c52c2cff437160f2989b7640ceb66b6024799c59def8798aca475
Contents?: true
Size: 273 Bytes
Versions: 30
Compression:
Stored size: 273 Bytes
Contents
class AddRedirectTable < ActiveRecord::Migration def self.up STDERR.puts "Adding Redirect Table" create_table :redirects do |t| t.column :from_path, :string t.column :to_path, :string end end def self.down drop_table :redirects end end
Version data entries
30 entries across 30 versions & 1 rubygems