los sitios pueden ser más grandes que 2GB

fixes #1552
fixes #1553
fixes #1554
fixes #1555
This commit is contained in:
f 2021-05-11 18:16:34 -03:00
parent c1d6316462
commit 5d24834234
2 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class ChangeBytesToBigInt < ActiveRecord::Migration[6.1]
def change
change_column :build_stats, :bytes, :bigint
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2021_04_14_152728) do
ActiveRecord::Schema.define(version: 2021_05_11_211357) do
# Could not dump table "access_logs" because of following StandardError
# Unknown type '' for column 'id'
@ -57,7 +57,7 @@ ActiveRecord::Schema.define(version: 2021_04_14_152728) do
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "deploy_id"
t.integer "bytes"
t.bigint "bytes"
t.float "seconds"
t.string "action", null: false
t.text "log"