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

4
db/schema.rb generated
View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.2].define(version: 2024_08_30_134641) do
ActiveRecord::Schema[7.2].define(version: 2024_09_11_230623) do
create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
t.text "body"
@ -73,7 +73,7 @@ ActiveRecord::Schema[7.2].define(version: 2024_08_30_134641) do
t.integer "level"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "number"
t.bigint "number", null: false
t.string "name_de"
t.string "name_en"
t.boolean "visual", default: false, null: false