mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
los sitios pueden ser más grandes que 2GB
fixes #1552 fixes #1553 fixes #1554 fixes #1555
This commit is contained in:
parent
c1d6316462
commit
5d24834234
2 changed files with 7 additions and 2 deletions
5
db/migrate/20210511211357_change_bytes_to_big_int.rb
Normal file
5
db/migrate/20210511211357_change_bytes_to_big_int.rb
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
class ChangeBytesToBigInt < ActiveRecord::Migration[6.1]
|
||||||
|
def change
|
||||||
|
change_column :build_stats, :bytes, :bigint
|
||||||
|
end
|
||||||
|
end
|
|
@ -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: 2021_04_14_152728) do
|
ActiveRecord::Schema.define(version: 2021_05_11_211357) do
|
||||||
|
|
||||||
# Could not dump table "access_logs" because of following StandardError
|
# Could not dump table "access_logs" because of following StandardError
|
||||||
# Unknown type '' for column 'id'
|
# 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 "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.integer "deploy_id"
|
t.integer "deploy_id"
|
||||||
t.integer "bytes"
|
t.bigint "bytes"
|
||||||
t.float "seconds"
|
t.float "seconds"
|
||||||
t.string "action", null: false
|
t.string "action", null: false
|
||||||
t.text "log"
|
t.text "log"
|
||||||
|
|
Loading…
Reference in a new issue