10 lines
177 B
Ruby
10 lines
177 B
Ruby
|
class DstTest < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :projects, :dts_test, :integer, :default => 0
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :projects, :dts_test
|
||
|
end
|
||
|
end
|