Hi,
you may use "rake db:schema:dump" to get the current schema out of your SQL Server DB.
If there are no migrations Rails will use the schema.rb file to setup your test database.
BUT: you can not use the Sql Server schema dump for a sqlite db, as it may contain
special Sql Server datatypes (varchar, char, real, money, ...)
Yoe have to search/replace this datatypes to simple datatypes (string, text, float )
hf Klaus