-
-
Save axsuul/3778031 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :db do | |
namespace :seed do | |
desc "Adaug medici in baza de date" | |
task :medici => :environment do | |
Medic.create!(:nume => "Serafinceanu", :prenume => "Cristian", :cod_parafa => "282828") | |
Medic.create!(:nume => "Craciun", :prenume =>"Anne-Marie", :cod_parafa =>"999") | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment