このコミットが含まれているのは:
2026-03-12 00:46:21 +09:00
コミット 2e2b99f74b
9個のファイルの変更105行の追加44行の削除
+6
ファイルの表示
@@ -0,0 +1,6 @@
class AddDiscardedAtToTagNames < ActiveRecord::Migration[8.0]
def change
add_column :tag_names, :discarded_at, :datetime
add_index :tag_names, :discarded_at
end
end
+6
ファイルの表示
@@ -0,0 +1,6 @@
class AddDiscardedAtToWikiPages < ActiveRecord::Migration[8.0]
def change
add_column :wiki_pages, :discarded_at, :datetime
add_index :wiki_pages, :discarded_at
end
end