Fix new rubocopy warnings

This commit is contained in:
Tom Hughes 2015-08-18 20:57:14 +01:00
parent 7ce77006fa
commit c9d35839be
30 changed files with 173 additions and 102 deletions

View file

@ -4,7 +4,7 @@ class CreateChangesetComments < ActiveRecord::Migration
def change
create_table :changeset_comments do |t|
t.column :changeset_id, :bigint, :null => false
t.column :author_id, :bigint, :null => false
t.column :author_id, :bigint, :null => false
t.text :body, :null => false
t.timestamp :created_at, :null => false
t.boolean :visible, :null => false