10 lines
213 B
Ruby
10 lines
213 B
Ruby
|
class AddUnixnameToRepositories < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :repositories, :unixname, :string, :null => false
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :repositories, :unixname
|
||
|
end
|
||
|
end
|