mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
238 B
Ruby
10 lines
238 B
Ruby
module ActiveRecord
|
|
module ConnectionAdapters # :nodoc:
|
|
module SchemaStatements
|
|
def drop_table_cascade(table_name, options = {})
|
|
execute "DROP TABLE #{quote_table_name(table_name)} CASCADE"
|
|
end
|
|
end
|
|
end
|
|
end
|