Actualizacion de Diseño Logins y Parte de Registro Negocios
This commit is contained in:
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.1.sql
Normal file
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.1.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.2.sql
Normal file
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.2.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.3.sql
Normal file
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.3.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.4.sql
Normal file
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.4.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.5.sql
Normal file
1
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.5.sql
Normal file
@@ -0,0 +1 @@
|
||||
COMMIT;
|
||||
20
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/update.sql
Normal file
20
desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/update.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
CREATE TABLE `auction_product_bids` (
|
||||
`id` int(11) NOT NULL,
|
||||
`product_id` bigint(20) UNSIGNED NOT NULL,
|
||||
`user_id` bigint(20) UNSIGNED NOT NULL,
|
||||
`amount` double(8,2) NOT NULL,
|
||||
`created_at` timestamp NULL DEFAULT current_timestamp(),
|
||||
`updated_at` timestamp NULL DEFAULT current_timestamp()
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
ALTER TABLE `auction_product_bids`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
ALTER TABLE `auction_product_bids`
|
||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
ALTER TABLE `products` ADD `starting_bid` double(20,2) DEFAULT '0.00' AFTER `discount_end_date`;
|
||||
ALTER TABLE `products` ADD `auction_start_date` INT(11) DEFAULT NULL AFTER `starting_bid`;
|
||||
ALTER TABLE `products` ADD `auction_end_date` INT(11) DEFAULT NULL AFTER `auction_start_date`;
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user