]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/20140507110937_create_changeset_comments.rb
Fix rubocop warnings
[rails.git] / db / migrate / 20140507110937_create_changeset_comments.rb
index cfc499535c2ed44f5648d8dd86d52d1f8af123d1..0b36fa228c690d149065613a67843214f9b0187c 100644 (file)
@@ -1,10 +1,10 @@
-require 'migrate'
+require "migrate"
 
 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