rails/activerecord/test/cases/migration
Ryuta Kamizono ab2d859e6c Deprecate allowed_index_name_length in DatabaseLimits
`allowed_index_name_length` was used for internal temporary operations
in SQLite3, since index name in SQLite3 must be globally unique and
SQLite3 doesn't have ALTER TABLE feature (so it is emulated by creating
temporary table with prefix).

`allowed_index_name_length` was to reserve the margin for the prefix,
but actually SQLite3 doesn't have a limitation for identifier name
length, so the margin has removed at 36901e6.

Now `allowed_index_name_length` is no longer relied on by any adapter,
so I'd like to remove the internal specific method which is no longer
used.
2020-04-30 01:21:54 +09:00
..
change_schema_test.rb Fix CI failures due to MySQL 8.0.19 no longer output integer display width unless ZEROFILL is also used 2020-01-15 21:40:10 +09:00
change_table_test.rb *_for_alter methods should also takes keyword arguments 2020-01-20 09:15:29 +09:00
column_attributes_test.rb Raise ArgumentError for invalid :limit and :precision like as other options 2019-04-07 16:14:42 +09:00
column_positioning_test.rb add_reference should respect column position for both reference id and type columns 2017-09-01 21:49:28 +09:00
columns_test.rb Deprecate allowed_index_name_length in DatabaseLimits 2020-04-30 01:21:54 +09:00
command_recorder_test.rb Fix CI failure on Ruby master 2020-01-29 09:22:25 +09:00
compatibility_test.rb Move SchemaMigration to migration_context 2019-06-14 11:15:08 -04:00
create_join_table_test.rb Enable Layout/EmptyLinesAroundAccessModifier cop 2019-06-13 12:00:45 +09:00
foreign_key_test.rb Fix foreign_key_exists? in change_table to allow keyword arguments 2020-02-05 09:03:15 +09:00
helper.rb Enable Layout/EmptyLinesAroundAccessModifier cop 2019-06-13 12:00:45 +09:00
index_test.rb Deprecate allowed_index_name_length in DatabaseLimits 2020-04-30 01:21:54 +09:00
logger_test.rb Move SchemaMigration to migration_context 2019-06-14 11:15:08 -04:00
pending_migrations_test.rb Use FileUpdateChecker for Migration::CheckPending 2019-10-08 16:29:12 -07:00
references_foreign_key_test.rb Remove NoForeignKeySupportTest which is no longer reached 2019-02-16 15:13:00 +09:00
references_index_test.rb Use frozen-string-literal in ActiveRecord 2017-07-19 22:27:07 +03:00
references_statements_test.rb Enable Layout/EmptyLinesAroundAccessModifier cop 2019-06-13 12:00:45 +09:00
rename_table_test.rb Remove dead test code for unsupported adapters 2020-04-12 03:30:25 +09:00