0

I am using datamapper instead of activerecord for my Rails App. I want to see the version details, but I can't see the schema_migrations table any where. What should I do?

Holger Just
  • 52,918
  • 14
  • 115
  • 123
Sayuj
  • 7,464
  • 13
  • 59
  • 76

1 Answers1

1

If you use explicit migrations with dm-migrations, it will create a migration_info table that contains the migration names.

CREATE TABLE "migration_info" ("migration_name" VARCHAR(255) UNIQUE);
postmodern
  • 454
  • 3
  • 3