11 lines
220 B
MySQL
11 lines
220 B
MySQL
|
|
alter table ShoppingList
|
||
|
|
add store_name text not null default '';
|
||
|
|
|
||
|
|
alter table ShoppingListResult
|
||
|
|
drop created_date;
|
||
|
|
|
||
|
|
alter table ShoppingListResult
|
||
|
|
drop found_date;
|
||
|
|
|
||
|
|
alter table Meal
|
||
|
|
add purchase_date TEXT DEFAULT NULL;
|