Rails のマイグレーションの前後に任意の処理をしたいとき、以下のように書きます。
desc 'Before task'
task :before do
puts 'Before'
end
desc 'After task'
task :after do
puts 'After'
end
Rake::Task['db:create'].enhance([:before]) do
Rake::Task[:after].invoke
end
Go to list of users who liked
More than 5 years have passed since last update.
Rails のマイグレーションの前後に任意の処理をしたいとき、以下のように書きます。
desc 'Before task'
task :before do
puts 'Before'
end
desc 'After task'
task :after do
puts 'After'
end
Rake::Task['db:create'].enhance([:before]) do
Rake::Task[:after].invoke
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked