Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reg_code column to systems table #1275

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions db/migrate/20250121104357_add_regcode_to_systems.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class AddRegcodeToSystems < ActiveRecord::Migration[6.1]
def up
add_column :systems, :pubcloud_reg_code, :string
change_column_default :systems, :pubcloud_reg_code, nil
end

def down
remove_column :systems, :pubcloud_reg_code
end
end
7 changes: 7 additions & 0 deletions package/obs/rmt-server.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Jan 21 10:49:54 UTC 2025 - Jesús Bermúdez Velázquez <[email protected]>

- Version 2.22
* rmt-server-pubcloud:
* Add pubcloud_reg_code column to systems table

-------------------------------------------------------------------
Fri Jan 03 10:44:00 UTC 2025 - Luís Caparroz <[email protected]>

Expand Down
Loading