update with changes from Production branch
This commit is contained in:
11
db/migrate/20120220015055_add_col_to_windows.rb
Normal file
11
db/migrate/20120220015055_add_col_to_windows.rb
Normal file
@ -0,0 +1,11 @@
|
||||
class AddColToWindows < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :windows, :col, :integer
|
||||
add_column :windows, :title, :string
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :windows, :title
|
||||
remove_column :windows, :col
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user