Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.1.sql
Normal file
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.1.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.2.sql
Normal file
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.2.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.3.sql
Normal file
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.3.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.4.sql
Normal file
1
temp/UHzDZdgQCB/addons/wholesale/sql/1.4.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
31
temp/UHzDZdgQCB/addons/wholesale/sql/update.sql
Normal file
31
temp/UHzDZdgQCB/addons/wholesale/sql/update.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
CREATE TABLE `wholesale_prices` (
|
||||
`id` int(11) NOT NULL,
|
||||
`product_stock_id` int(11) NOT NULL,
|
||||
`min_qty` int(11) NOT NULL DEFAULT '0',
|
||||
`max_qty` int(11) NOT NULL DEFAULT '0',
|
||||
`price` double(20,2) NOT NULL DEFAULT '0.00',
|
||||
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
|
||||
--
|
||||
-- Indexes for dumped tables
|
||||
--
|
||||
|
||||
--
|
||||
-- Indexes for table `wholesale_prices`
|
||||
--
|
||||
ALTER TABLE `wholesale_prices`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT for dumped tables
|
||||
--
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT for table `wholesale_prices`
|
||||
--
|
||||
ALTER TABLE `wholesale_prices`
|
||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user