13 lines
184 B
Ruby
13 lines
184 B
Ruby
class CreateAutoloader < ActiveRecord::Migration[6.0]
|
|
|
|
def change
|
|
|
|
create_table :autoloaders do |t|
|
|
t.references :command
|
|
t.boolean :in_use
|
|
end
|
|
|
|
end
|
|
|
|
end
|