db: migrate issue

I am trying to create a user model. When I generate the script, rails creates all the files though the migrate file should be labeled 001_create_users.rb. Instead the file has the date followed by some other number and then _create_users.rb. Also it looks like the template for the file is slightly off from what I was expecting.

class CreateUsers < ActiveRecord::Migration   def self.up     create_table :users do |t|

      t.timestamps     end   end

  def self.down     drop_table :users   end end

I am trying to create a user model. When I generate the script, rails creates all the files though the migrate file should be labeled 001_create_users.rb. Instead the file has the date followed by some other number and then _create_users.rb.

rails 2.1 is different. This is normal (http://ryandaigle.com/articles/2008/4/2/what-s-new-in-edge-rails-utc-based-migration-versioning )

Fred