mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
8 lines
183 B
Ruby
8 lines
183 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddProvisioningStatusToMyModules < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :my_modules, :provisioning_status, :integer
|
||
|
end
|
||
|
end
|