summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-11-06 07:54:24 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-11-06 07:54:24 +0000
commit418a4e49f85d5f3355b5d3b3f68d67348308cbc0 (patch)
treea37cb2adb49bd76358a89529bef7d95c76fdf16b /db
parentf76e17c18add6d66e5d3f1c34c763e0859d9e120 (diff)
downloadredmine-418a4e49f85d5f3355b5d3b3f68d67348308cbc0.tar.gz
redmine-418a4e49f85d5f3355b5d3b3f68d67348308cbc0.zip
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
Diffstat (limited to 'db')
-rw-r--r--db/migrate/027_create_wikis.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/027_create_wikis.rb b/db/migrate/027_create_wikis.rb
index ed6784296..284eee2e2 100644
--- a/db/migrate/027_create_wikis.rb
+++ b/db/migrate/027_create_wikis.rb
@@ -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