7 lines
142 B
Ruby
7 lines
142 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropMembershipApps < ActiveRecord::Migration[6.0]
|
|
def change
|
|
drop_table :membership_apps
|
|
end
|
|
end
|