Skip to content

Commit 82f6afa

Browse files
committed
Better short description of task
1 parent d47b776 commit 82f6afa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ utf8mb4 without truncating column contents and maintaining its original schema (
2929

3030
```
3131
...
32-
rake db:utf8mb4 # migrates a table (ENV["TABLE"]) to utf8mb encoding
32+
rake db:utf8mb4 # migrates a table[/column] (TABLE, COLUMN env vars) to utf8mb encoding
3333
...
3434

3535
```

lib/utf8mb4rails.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module Utf8mb4rails
2020
extend Rake::DSL
2121

2222
namespace :db do
23-
desc 'migrates a table (ENV["TABLE"]) to utf8mb encoding'
23+
desc 'migrates a table[/column] (TABLE, COLUMN env vars) to utf8mb encoding'
2424
task utf8mb4: :environment do
2525
table = ENV['TABLE']
2626
unless table

0 commit comments

Comments
 (0)