Posts by Joatan • 11 points
3 posts
-
0
votes3
answers146
viewsA: Views specifies for Devise
Can also be done: rails g devise:views user And for controllers rails g devise:controllers user on the routes gets: sessions: 'users/sessions', registrations: 'users/registrations' Remembering that…
-
0
votes1
answer138
viewsA: Ruby on Rails Sqlite3::Busyexception: database is locked: INSERT INTO
Continuing the logbook: The problem is with Gem 'Apartment'. This problem happens in the models that are in config.excluded_models
-
1
votes1
answer138
viewsQ: Ruby on Rails Sqlite3::Busyexception: database is locked: INSERT INTO
Hello, I am facing a problem with Sqlite3. When I run the code: user = SystemUser.new(email: "[email protected]", password: "marcos123") user.profile = Profile.new(first_name: "Marcos") user.save…