rake db:purge includes albums and comments
This commit is contained in:
parent
5c77ab048e
commit
ddffc5560a
1 changed files with 2 additions and 0 deletions
|
|
@ -26,9 +26,11 @@ namespace :db do
|
||||||
|
|
||||||
# Specifiy what models to remove
|
# Specifiy what models to remove
|
||||||
Post.delete_all
|
Post.delete_all
|
||||||
|
Comment.delete_all
|
||||||
Person.delete_all
|
Person.delete_all
|
||||||
User.delete_all
|
User.delete_all
|
||||||
Request.delete_all
|
Request.delete_all
|
||||||
|
Album.delete_all
|
||||||
end
|
end
|
||||||
|
|
||||||
desc 'Purge and seed the current RAILS_ENV database using information from db/seeds.rb'
|
desc 'Purge and seed the current RAILS_ENV database using information from db/seeds.rb'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue