mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
6 lines
173 B
Ruby
6 lines
173 B
Ruby
class AddYoutubeAndBlogToContacts < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :contacts, :youtube, :string
|
|
add_column :contacts, :blog, :string
|
|
end
|
|
end
|