5 lines
92 B
Ruby
5 lines
92 B
Ruby
class DropUsersTable < ActiveRecord::Migration
|
|
def change
|
|
drop_table :users
|
|
end
|
|
end
|