mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
19 lines
477 B
Plaintext
19 lines
477 B
Plaintext
-- database: /Users/kotyczka/repositories/kotyczka/apps/django/pyapp/db.sqlite3
|
|
|
|
-- Drücken Sie die ▷-Schaltfläche oben rechts im Fenster, um die gesamte Datei auszuführen.
|
|
|
|
insert into pyapp_shoppingitem
|
|
SELECT * FROM migration_shoppingitem;
|
|
commit;
|
|
|
|
create table pyapp_shoppingitem as select * from migration_shoppingitem where 1 = 0;
|
|
commit;
|
|
|
|
drop table pyapp_product
|
|
commit;
|
|
|
|
|
|
|
|
select * from pyapp_shoppingitem;
|
|
|
|
delete from pyapp_shoppingitem where name like 'Proxy'; |