Increase max backup size (#12602)
* Increased max backup size * partially reverted schema.rb
This commit is contained in:
		@@ -7,7 +7,7 @@
 | 
				
			|||||||
#  user_id           :bigint(8)
 | 
					#  user_id           :bigint(8)
 | 
				
			||||||
#  dump_file_name    :string
 | 
					#  dump_file_name    :string
 | 
				
			||||||
#  dump_content_type :string
 | 
					#  dump_content_type :string
 | 
				
			||||||
#  dump_file_size    :integer
 | 
					#  dump_file_size    :bigint
 | 
				
			||||||
#  dump_updated_at   :datetime
 | 
					#  dump_updated_at   :datetime
 | 
				
			||||||
#  processed         :boolean          default(FALSE), not null
 | 
					#  processed         :boolean          default(FALSE), not null
 | 
				
			||||||
#  created_at        :datetime         not null
 | 
					#  created_at        :datetime         not null
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										9
									
								
								db/migrate/20191212003415_increase_backup_size.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								db/migrate/20191212003415_increase_backup_size.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
				
			|||||||
 | 
					class IncreaseBackupSize < ActiveRecord::Migration[5.2]
 | 
				
			||||||
 | 
					  def up
 | 
				
			||||||
 | 
					    change_column :backups, :dump_file_size, :bigint
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def down
 | 
				
			||||||
 | 
					    change_column :backups, :dump_file_size, :integer
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					end
 | 
				
			||||||
							
								
								
									
										28
									
								
								db/schema.rb
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								db/schema.rb
									
									
									
									
									
								
							@@ -10,7 +10,7 @@
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
# It's strongly recommended that you check this file into your version control system.
 | 
					# It's strongly recommended that you check this file into your version control system.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ActiveRecord::Schema.define(version: 2019_10_31_163205) do
 | 
					ActiveRecord::Schema.define(version: 2019_12_12_003415) do
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # These are extensions that must be enabled in order to support this database
 | 
					  # These are extensions that must be enabled in order to support this database
 | 
				
			||||||
  enable_extension "plpgsql"
 | 
					  enable_extension "plpgsql"
 | 
				
			||||||
@@ -200,7 +200,7 @@ ActiveRecord::Schema.define(version: 2019_10_31_163205) do
 | 
				
			|||||||
    t.bigint "user_id"
 | 
					    t.bigint "user_id"
 | 
				
			||||||
    t.string "dump_file_name"
 | 
					    t.string "dump_file_name"
 | 
				
			||||||
    t.string "dump_content_type"
 | 
					    t.string "dump_content_type"
 | 
				
			||||||
    t.integer "dump_file_size"
 | 
					    t.bigint "dump_file_size"
 | 
				
			||||||
    t.datetime "dump_updated_at"
 | 
					    t.datetime "dump_updated_at"
 | 
				
			||||||
    t.boolean "processed", default: false, null: false
 | 
					    t.boolean "processed", default: false, null: false
 | 
				
			||||||
    t.datetime "created_at", null: false
 | 
					    t.datetime "created_at", null: false
 | 
				
			||||||
@@ -703,30 +703,6 @@ ActiveRecord::Schema.define(version: 2019_10_31_163205) do
 | 
				
			|||||||
    t.index ["tag_id", "status_id"], name: "index_statuses_tags_on_tag_id_and_status_id", unique: true
 | 
					    t.index ["tag_id", "status_id"], name: "index_statuses_tags_on_tag_id_and_status_id", unique: true
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  create_table "stream_entries", force: :cascade do |t|
 | 
					 | 
				
			||||||
    t.bigint "activity_id"
 | 
					 | 
				
			||||||
    t.string "activity_type"
 | 
					 | 
				
			||||||
    t.datetime "created_at", null: false
 | 
					 | 
				
			||||||
    t.datetime "updated_at", null: false
 | 
					 | 
				
			||||||
    t.boolean "hidden", default: false, null: false
 | 
					 | 
				
			||||||
    t.bigint "account_id"
 | 
					 | 
				
			||||||
    t.index ["account_id", "activity_type", "id"], name: "index_stream_entries_on_account_id_and_activity_type_and_id"
 | 
					 | 
				
			||||||
    t.index ["activity_id", "activity_type"], name: "index_stream_entries_on_activity_id_and_activity_type"
 | 
					 | 
				
			||||||
  end
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  create_table "subscriptions", force: :cascade do |t|
 | 
					 | 
				
			||||||
    t.string "callback_url", default: "", null: false
 | 
					 | 
				
			||||||
    t.string "secret"
 | 
					 | 
				
			||||||
    t.datetime "expires_at"
 | 
					 | 
				
			||||||
    t.boolean "confirmed", default: false, null: false
 | 
					 | 
				
			||||||
    t.datetime "created_at", null: false
 | 
					 | 
				
			||||||
    t.datetime "updated_at", null: false
 | 
					 | 
				
			||||||
    t.datetime "last_successful_delivery_at"
 | 
					 | 
				
			||||||
    t.string "domain"
 | 
					 | 
				
			||||||
    t.bigint "account_id", null: false
 | 
					 | 
				
			||||||
    t.index ["account_id", "callback_url"], name: "index_subscriptions_on_account_id_and_callback_url", unique: true
 | 
					 | 
				
			||||||
  end
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  create_table "tags", force: :cascade do |t|
 | 
					  create_table "tags", force: :cascade do |t|
 | 
				
			||||||
    t.string "name", default: "", null: false
 | 
					    t.string "name", default: "", null: false
 | 
				
			||||||
    t.datetime "created_at", null: false
 | 
					    t.datetime "created_at", null: false
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user