1class CreateAutoloader < ActiveRecord::Migration[6.0] 2 def change 3 create_table :autoloaders do |t| 4 t.references :command 5 t.boolean :in_use 6 end 7 end 8end 9 10