Kill trailing whitespace in ruby files

This commit is contained in:
小太
2013-03-19 23:10:10 +11:00
parent c107f96cec
commit cba839ba76
319 changed files with 2710 additions and 2710 deletions

View File

@@ -2,7 +2,7 @@ class CreatePostVersions < ActiveRecord::Migration
def self.up
create_table :post_versions do |t|
t.timestamps
t.column :post_id, :integer, :null => false
t.column :tags, :text, :null => false, :default => ""
t.column :rating, :char
@@ -11,7 +11,7 @@ class CreatePostVersions < ActiveRecord::Migration
t.column :updater_id, :integer, :null => false
t.column :updater_ip_addr, "inet", :null => false
end
add_index :post_versions, :post_id
add_index :post_versions, :updater_id
add_index :post_versions, :updater_ip_addr