mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-12 04:03:08 +00:00
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@290 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
152 B
Ruby
11 lines
152 B
Ruby
class CreateWikis < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :wikis do |t|
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :wikis
|
|
end
|
|
end
|