From 83fa666fbf9587eeec97520e6b78db39917b5c2a Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Tue, 3 Feb 2015 12:21:00 +0200 Subject: [PATCH] Turn off epp_log migration --- .../20150109081914_create_api_log_tables.rb | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/db/migrate/20150109081914_create_api_log_tables.rb b/db/migrate/20150109081914_create_api_log_tables.rb index c1dd695bd..12961d540 100644 --- a/db/migrate/20150109081914_create_api_log_tables.rb +++ b/db/migrate/20150109081914_create_api_log_tables.rb @@ -4,31 +4,31 @@ class CreateApiLogTables < ActiveRecord::Migration end def up - create_table :epp_logs do |t| - t.text :request - t.text :response - t.string :request_command - t.string :request_object - t.boolean :request_successful - t.string :api_user_name - t.string :api_user_registrar - t.string :ip + # create_table :epp_logs do |t| + # t.text :request + # t.text :response + # t.string :request_command + # t.string :request_object + # t.boolean :request_successful + # t.string :api_user_name + # t.string :api_user_registrar + # t.string :ip - t.timestamps - end + # t.timestamps + # end - create_table :repp_logs do |t| - t.string :request_path - t.string :request_method - t.text :request_params - t.text :response - t.string :response_code - t.string :api_user_name - t.string :api_user_registrar - t.string :ip + # create_table :repp_logs do |t| + # t.string :request_path + # t.string :request_method + # t.text :request_params + # t.text :response + # t.string :response_code + # t.string :api_user_name + # t.string :api_user_registrar + # t.string :ip - t.timestamps - end + # t.timestamps + # end end def down