I've create and run my vanity migrations and I can see the resulting tables in schema.rb
and the rails console
:
ActiveRecord::Base.connection.tables
=> ["schema_migrations", "pages", "users", "areas", "roles", "assignments", "categories", "heuristics", "references", "footnotes", "products", "orders", "vanity_metrics", "vanity_metric_values", "vanity_experiments", "vanity_conversions", "vanity_participants"]
Why then has it not created vanity_experiments.rb
and similar files in app/models
?
I understand vanity will be using Redis not my PostgreSQL to store the data, but Rails still maps each table to a model, right?