discourse/lib/migration
Sam Saffron d0d5a138c3
DEV: stop freezing frozen strings
We have the `# frozen_string_literal: true` comment on all our
files. This means all string literals are frozen. There is no need
to call #freeze on any literals.

For files with `# frozen_string_literal: true`

```
puts %w{a b}[0].frozen?
=> true

puts "hi".frozen?
=> true

puts "a #{1} b".frozen?
=> true

puts ("a " + "b").frozen?
=> false

puts (-("a " + "b")).frozen?
=> true
```

For more details see: https://samsaffron.com/archive/2018/02/16/reducing-string-duplication-in-ruby
2020-04-30 16:48:53 +10:00
..
base_dropper.rb DEV: stop freezing frozen strings 2020-04-30 16:48:53 +10:00
column_dropper.rb FIX: Create readonly functions during backup 2019-08-09 11:39:46 +02:00
safe_migrate.rb Revert "We have had errors reported due to migrations breaking and are reverting" 2020-04-14 11:31:07 +10:00
table_dropper.rb FIX: Drop readonly function when dropping table 2019-08-09 11:39:46 +02:00