mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
270 B
Ruby
11 lines
270 B
Ruby
class DropOrganizations < ActiveRecord::Migration[7.0]
|
|
def change
|
|
remove_reference :conferences, :organization, index: true
|
|
|
|
drop_table :organizations do |t|
|
|
t.string :name, null: false
|
|
t.text :description
|
|
t.string :picture
|
|
end
|
|
end
|
|
end
|