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.