forked from tdm00/cfwheels-dbmigrate-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
apimigrationremoverecord
Troy Murray edited this page Sep 19, 2011
·
5 revisions
Removes one or more records from a table.
removeRecord(table[,where]);
Parameter | Type | Required | Default | Description |
table | string | Yes | name of the table to remove records from | |
where | string | no | where condition (see examples below) |
removeRecord(table='members',where='id=1');
removeRecord(table="members",where="lastname='smith' AND firstname='john'");