remove trailing white-spaces from db/migrate/027_create_wikis.rb (#9510)

Contributed by Igor Zubkov.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7736 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-11-06 07:54:24 +00:00
parent f76e17c18a
commit 418a4e49f8
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ class CreateWikis < ActiveRecord::Migration
t.column :project_id, :integer, :null => false
t.column :start_page, :string, :limit => 255, :null => false
t.column :status, :integer, :default => 1, :null => false
end
end
add_index :wikis, :project_id, :name => :wikis_project_id
end