method

create_table

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

create_table(table_name, **options)
public

No documentation available.

# File activerecord/lib/active_record/migration.rb, line 583
      def create_table(table_name, **options)
        if block_given?
          super { |t| yield compatible_table_definition(t) }
        else
          super
        end
      end