django2/pyapp/sql-scripts
Peter Kotyczka 5fe40e0304 api added
2024-04-08 20:55:26 +02:00

13 lines
383 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;