Now when you migrate the database you loose the injected schema. And missing the tables: `hyperloop_connections` and `hyperloop_queued_messages` It should install these 2 migrations: ```ruby class InstallHyperloopConnections < ActiveRecord::Migration[5.2] def change create_table :hyperloop_connections do |t| t.string :channel t.string :session t.datetime :created_at t.datetime :expires_at, index: true t.datetime :refresh_at end create_table :hyperloop_queued_messages do |t| t.integer :connection_id, index: true t.text :data end end end ``` Should there be an index on the channel of session?
Now when you migrate the database you loose the injected schema.
And missing the tables:
hyperloop_connectionsandhyperloop_queued_messagesIt should install these 2 migrations:
Should there be an index on the channel of session?