9 lines
143 B
Ruby
9 lines
143 B
Ruby
# encoding: UTF-8
|
|
# frozen_string_literal: true
|
|
|
|
class DropAssets < ActiveRecord::Migration[4.2]
|
|
def change
|
|
drop_table :assets
|
|
end
|
|
end
|