Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -6,6 +6,6 @@ | ... | @@ -6,6 +6,6 @@ | 
| 6 | # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) | 6 | # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) | 
| 7 | # Character.create(name: 'Luke', movie: movies.first) | 7 | # Character.create(name: 'Luke', movie: movies.first) | 
| 8 | admin = Role.create(name: 'SuperAdmin', erasable: false) | 8 | admin = Role.create(name: 'SuperAdmin', erasable: false) | 
| 9 | -user = Role.create(name: 'Player', erasable: false) | 9 | +player = Role.create(name: 'Player', erasable: false) | 
| 10 | User.new(name: 'Iker', mail: 'i.narvaez@ukko.mx', password: '12345', password_confirmation: '12345', roles: [admin, player]) | 10 | User.new(name: 'Iker', mail: 'i.narvaez@ukko.mx', password: '12345', password_confirmation: '12345', roles: [admin, player]) | 
| 11 | User.new(name: 'Iker', mail: 'p.sanches@ukko.mx', password: '12345', password_confirmation: '12345', roles: [admin, player]) | 11 | User.new(name: 'Iker', mail: 'p.sanches@ukko.mx', password: '12345', password_confirmation: '12345', roles: [admin, player]) | ... | ... | 
- 
Please register or login to post a comment