socialpoint-labs / sheetfu-apps-script

A Google apps scripts ORM to manipulate spreadsheets as database tables.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove row

andrewmiller1 opened this issue · comments

As far as I can see, you can add but not delete. This makes working with a table difficult. It's good practice to add opposites for each function in general as well

There are some challenges into deleting rows, and guarantee data consistency, especially if you commit your data at the row level. I looked into it some time ago, I would like to look into it again soon.

For the time being, you could have a field "active" in your table, which you then can use to filter your data using the select method.

I'll leave the issue open to remind me later to add it.

Awesome - thanks for looking into this :)

@andrewmiller1 we are about to have this feature added. @glecko is taking care of it.
You can follow the current PR for this here #30.