void enableExtension(String name, {bool ifNotExists = true}) { final statement = ifNotExists ? 'CREATE EXTENSION IF NOT EXISTS "$name"' : 'CREATE EXTENSION "$name"'; raw(statement); }