Project

General

Profile

Patch #233 » 075_add_project_ui_theme.rb

Wynn Netherland, 2008-02-03 11:01

 
1
class AddProjectUiTheme < ActiveRecord::Migration
2
  def self.up
3
    add_column :projects, :ui_theme, :string
4
  end
5

    
6
  def self.down
7
    remove_column :projects, :ui_theme
8
  end
9
end
(1-1/2)