Skip to content

Commit f43c0b2

Browse files
committed
Testing GH action
1 parent c5980a1 commit f43c0b2

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class GoodMigration < ActiveRecord::Migration[7.2]
2+
def change
3+
add_column :materials, :a_good_field, :string
4+
end
5+
end

db/schema.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema[7.2].define(version: 2026_03_10_163512) do
13+
ActiveRecord::Schema[7.2].define(version: 2026_03_25_133804) do
1414
# These are extensions that must be enabled in order to support this database
1515
enable_extension "plpgsql"
1616

@@ -388,6 +388,7 @@
388388
t.string "fields", default: [], array: true
389389
t.boolean "visible", default: true
390390
t.bigint "space_id"
391+
t.string "a_good_field"
391392
t.index ["content_provider_id"], name: "index_materials_on_content_provider_id"
392393
t.index ["slug"], name: "index_materials_on_slug", unique: true
393394
t.index ["space_id"], name: "index_materials_on_space_id"

0 commit comments

Comments
 (0)