Skip to content

Commit 1edc62d

Browse files
committed
chore: マイグレーション実行後のschema.rbを更新
- add_inactivated_at_to_dojos マイグレーション - change_note_to_text_in_dojos マイグレーション の実行結果を反映
1 parent 03997a9 commit 1edc62d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

db/schema.rb

Lines changed: 4 additions & 2 deletions
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[8.0].define(version: 2025_06_30_040611) do
13+
ActiveRecord::Schema[8.0].define(version: 2025_08_05_105233) do
1414
# These are extensions that must be enabled in order to support this database
1515
enable_extension "pg_catalog.plpgsql"
1616
enable_extension "pg_stat_statements"
@@ -39,7 +39,9 @@
3939
t.boolean "is_active", default: true, null: false
4040
t.boolean "is_private", default: false, null: false
4141
t.integer "counter", default: 1, null: false
42-
t.string "note", default: "", null: false
42+
t.text "note", default: "", null: false
43+
t.datetime "inactivated_at"
44+
t.index ["inactivated_at"], name: "index_dojos_on_inactivated_at"
4345
end
4446

4547
create_table "event_histories", id: :serial, force: :cascade do |t|

0 commit comments

Comments
 (0)