I am trying to insert data into a SQLite database that is used for a Rails application.
I initially thought I could have used SQLite manager and insert into tablename (value) values ('value') however, it did not insert anything into the table and did not produce an error.
Am I doing anything wrong? Is there a way to do this directly with Rails?
I thought I could use some sort of activerecord migration and just rake db:migrate, however I have been unable to find the appropriate commands.
values('value)-- is it a typo in question, or really missing apostrophe in the query? (should be values('value'))rake db:seedif you are looking for direction.rake db:seedas my approach to solving this. It was easy and provides a way of staying within the RoR environment and still manage and edit SQlite databases.