![]() |
Sergey Kornilov admin 9/29/2010 |
You won't gain any benefits splitting data into several databases. Keep everything in one database. |
K
|
karmacomposer author 9/29/2010 |
You won't gain any benefits splitting data into several databases. Keep everything in one database.
|
![]() |
Sergey Kornilov admin 9/29/2010 |
Yes, this can be done with help of events. |
K
|
karmacomposer author 9/29/2010 |
Yes, this can be done with help of events. Just a word of advice. In many cases you don't need to move data physically to another table. You can simply store everything in one table and update status field like 'posted', 'accepted', 'completed' etc.
|
![]() |
Sergey Kornilov admin 9/29/2010 |
Yes, this can be done. It looks like a fairly straightforward deletion of all records with certain status. delete * from <table name> where status='hired' |
K
|
karmacomposer author 9/29/2010 |
Yes, this can be done. It looks like a fairly straightforward deletion of all records with certain status. delete * from <table name> where status='hired'
|