21 lines
687 B
SQL
21 lines
687 B
SQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the `StockMovementsView` table. If the table is not empty, all the data it contains will be lost.
|
||
|
|
- You are about to drop the `Stock_View` table. If the table is not empty, all the data it contains will be lost.
|
||
|
|
- You are about to drop the `Total_Stock_View` table. If the table is not empty, all the data it contains will be lost.
|
||
|
|
- You are about to drop the `stock_movements_view` table. If the table is not empty, all the data it contains will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- DropTable
|
||
|
|
DROP TABLE `StockMovementsView`;
|
||
|
|
|
||
|
|
-- DropTable
|
||
|
|
DROP TABLE `Stock_View`;
|
||
|
|
|
||
|
|
-- DropTable
|
||
|
|
DROP TABLE `Total_Stock_View`;
|
||
|
|
|
||
|
|
-- DropTable
|
||
|
|
DROP TABLE `stock_movements_view`;
|