From 05fe899cddb4f1c410eeeb8db62e5f796e81e887 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Tue, 26 Apr 2016 01:07:08 +0200 Subject: [PATCH] Applied rubocop. --- db/migrate/20160424000002_create_external_sync.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/20160424000002_create_external_sync.rb b/db/migrate/20160424000002_create_external_sync.rb index d0e6962c1..42d585305 100644 --- a/db/migrate/20160424000002_create_external_sync.rb +++ b/db/migrate/20160424000002_create_external_sync.rb @@ -6,7 +6,7 @@ class CreateExternalSync < ActiveRecord::Migration t.string :object, limit: 100, null: false t.integer :o_id, null: false t.text :last_payload, limit: 500.kilobytes + 1, null: true - t.timestamps null: false + t.timestamps null: false end add_index :external_syncs, [:source, :source_id], unique: true add_index :external_syncs, [:source, :source_id, :object, :o_id]