On Sun, Mar 18, 2012 at 7:46 PM, Raphael Lorenzeto <[email protected]> wrote: > I cannot find those files on my system so what can I do? Is there any kind > of cache I can clear??
The easiest way to clear them out is to `dropdb` and `createdb` again. The long answer is that there are two tables in the ledger database, one named `schema_changes` and another called `user_schema_changes`. These keep track of the schema migrations (add columns, add tables, etc) that ledger_web has run since you created the database. To ensure everything starts fresh, you should probably just drop and recreate. This isn't ideal but you shouldn't ever have to do it again once you have ledger_web up and running. --Pete
