Hi,
Is is possible to add this constraint: "null => false" and "limit => 45" like below:
create_table :movie do |t| t.string :name, :null => false, :limit => 45 end
...just by using this kind of scaffold command (on Rails 2)?
$ ruby script/generate scaffold Movie name:string
Thanks,
D.