When I use create_table to make a table :string always makes a varchar column. How can I make it so that :string will make a char column? create_table(:accounts, :options => ''ENGINE=MyISAM DEFAULT'') do |table| # This creates a varchar column, I would like a char column. table.column :username, :string ... end -- Posted via http://www.ruby-forum.com/.
Apparently Analagous Threads
- Migration doesn''t seem to preserve create_table options in schema
- Best Forum? Was: Migration doesn''t seem to preserve create_table options in schema
- making a set column type with create_table
- Proper Database Design For A Newbie
- Unknown column username in where clause