7 lines
151 B
Ruby
7 lines
151 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropTableEventAttachments < ActiveRecord::Migration[4.2]
|
|
def change
|
|
drop_table :event_attachments
|
|
end
|
|
end
|