From e36b60af8e192a28075ae988c1387d754830bbac Mon Sep 17 00:00:00 2001 From: Russ Long Date: Sun, 23 Dec 2018 10:08:32 -0500 Subject: [PATCH] add timestamp columns to tables via migrations --- ...18_12_23_100532_add_timestamps_bidders.php | 30 +++++++++++++++++++ ...8_12_23_100646_add_timestamps_checkout.php | 30 +++++++++++++++++++ ...2018_12_23_100651_add_timestamps_items.php | 30 +++++++++++++++++++ ...2_23_100701_add_timestamps_winningbids.php | 30 +++++++++++++++++++ ...3_100710_add_timestamps_paymentmethods.php | 30 +++++++++++++++++++ 5 files changed, 150 insertions(+) create mode 100644 database/migrations/2018_12_23_100532_add_timestamps_bidders.php create mode 100644 database/migrations/2018_12_23_100646_add_timestamps_checkout.php create mode 100644 database/migrations/2018_12_23_100651_add_timestamps_items.php create mode 100644 database/migrations/2018_12_23_100701_add_timestamps_winningbids.php create mode 100644 database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php diff --git a/database/migrations/2018_12_23_100532_add_timestamps_bidders.php b/database/migrations/2018_12_23_100532_add_timestamps_bidders.php new file mode 100644 index 0000000..b8b64b1 --- /dev/null +++ b/database/migrations/2018_12_23_100532_add_timestamps_bidders.php @@ -0,0 +1,30 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} diff --git a/database/migrations/2018_12_23_100646_add_timestamps_checkout.php b/database/migrations/2018_12_23_100646_add_timestamps_checkout.php new file mode 100644 index 0000000..9dd883b --- /dev/null +++ b/database/migrations/2018_12_23_100646_add_timestamps_checkout.php @@ -0,0 +1,30 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} diff --git a/database/migrations/2018_12_23_100651_add_timestamps_items.php b/database/migrations/2018_12_23_100651_add_timestamps_items.php new file mode 100644 index 0000000..911ed46 --- /dev/null +++ b/database/migrations/2018_12_23_100651_add_timestamps_items.php @@ -0,0 +1,30 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} diff --git a/database/migrations/2018_12_23_100701_add_timestamps_winningbids.php b/database/migrations/2018_12_23_100701_add_timestamps_winningbids.php new file mode 100644 index 0000000..1b9697e --- /dev/null +++ b/database/migrations/2018_12_23_100701_add_timestamps_winningbids.php @@ -0,0 +1,30 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} diff --git a/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php b/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php new file mode 100644 index 0000000..afd9c9a --- /dev/null +++ b/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php @@ -0,0 +1,30 @@ +timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}