Cosmetics
Some checks failed
/ Run tests (push) Successful in 1m52s
/ Run system tests (push) Failing after 2m3s
/ Build, push and deploy image (push) Successful in 1m45s

This commit is contained in:
david 2024-11-11 05:00:51 +01:00
parent ee5dbcf33e
commit e569bcb246
21 changed files with 54 additions and 65 deletions

View file

@ -0,0 +1,5 @@
class AddUrlToReports < ActiveRecord::Migration[8.0]
def change
add_column :reports, :url, :string
end
end

3
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[8.0].define(version: 2024_11_11_011637) do
ActiveRecord::Schema[8.0].define(version: 2024_11_11_034826) do
create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
t.text "body"
@ -158,6 +158,7 @@ ActiveRecord::Schema[8.0].define(version: 2024_11_11_011637) do
t.string "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "url"
end
create_table "sessions", force: :cascade do |t|