From 76d2185c6085c59301c0e49e444ef7162c40dc0d Mon Sep 17 00:00:00 2001 From: sampatbadhe Date: Fri, 5 Aug 2022 12:37:13 +0530 Subject: [PATCH] [ci skip] adding basic create_enum and drop_enum in CommandRecorder documentations --- activerecord/lib/active_record/migration/command_recorder.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activerecord/lib/active_record/migration/command_recorder.rb b/activerecord/lib/active_record/migration/command_recorder.rb index 8ef8d1f53f..c83d4092f5 100644 --- a/activerecord/lib/active_record/migration/command_recorder.rb +++ b/activerecord/lib/active_record/migration/command_recorder.rb @@ -18,9 +18,11 @@ class Migration # * change_column_null # * change_column_comment (must supply a +:from+ and +:to+ option) # * change_table_comment (must supply a +:from+ and +:to+ option) + # * create_enum # * create_join_table # * create_table # * disable_extension + # * drop_enum (must supply a list of values) # * drop_join_table # * drop_table (must supply a block) # * enable_extension