Fix numbers autoincrement
All checks were successful
/ Run tests (push) Successful in 2m16s
/ Run system tests (push) Successful in 2m29s
/ Build, push and deploy image (push) Successful in 1m37s

This commit is contained in:
david 2024-09-12 01:18:04 +02:00
parent 63590c9e92
commit 1cdf5048c3
6 changed files with 16 additions and 5 deletions

View file

@ -0,0 +1,6 @@
class ChangeChecksNumberNullToFalse < ActiveRecord::Migration[7.2]
def change
change_column :checks, :number, :bigint, null: false
change_column :checks, :external_url, :string, null: true
end
end