I am trying to understand the following statement, it is from a rails migration file:
x.datetime "new", :null => false
x.datetime "update", :null => false
I understand the the first part of both statements (everything before the comma) but I am unsure on the null portion
:null => false
Is this basically saying "if it does not exist, then it is false?" The logic just seems a bit strange, any clarification on this would be greatly helpful.