We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47b776 commit 82f6afaCopy full SHA for 82f6afa
README.md
@@ -29,7 +29,7 @@ utf8mb4 without truncating column contents and maintaining its original schema (
29
30
```
31
...
32
-rake db:utf8mb4 # migrates a table (ENV["TABLE"]) to utf8mb encoding
+rake db:utf8mb4 # migrates a table[/column] (TABLE, COLUMN env vars) to utf8mb encoding
33
34
35
lib/utf8mb4rails.rb
@@ -20,7 +20,7 @@ module Utf8mb4rails
20
extend Rake::DSL
21
22
namespace :db do
23
- desc 'migrates a table (ENV["TABLE"]) to utf8mb encoding'
+ desc 'migrates a table[/column] (TABLE, COLUMN env vars) to utf8mb encoding'
24
task utf8mb4: :environment do
25
table = ENV['TABLE']
26
unless table
0 commit comments