Cannot add a NOT NULL column with default value NULL in Sqlite3
This is (what I would consider) a glitch with SQLite. This error occurs whether there are any records in the table or not. When adding a table from scratch, you can specify NOT NULL, which is what you’re doing with the “:null => false” notation. However, you can’t do this when adding a column. SQLite’s … Read more