editfmah / sharkorm

Shark ORM for iOS/macOS/tvOS/watchOS
http://sharkorm.com
Other
247 stars 39 forks source link

How to delete table? #118

Closed Dharmik07 closed 5 years ago

editfmah commented 5 years ago

SharkORM.rawExecute("DROP TABLE xyz;")

But this can be dangerous, do not do this to empty a table. Only use this to remove tables that you are no longer referencing from any code or object classes.

Dharmik07 commented 5 years ago

Thanks