Files
.well-known
app
bootstrap
config
database
factories
migrations
2014_10_12_000000_create_users_table.php
2014_10_12_100000_create_password_resets_table.php
2018_12_23_100532_add_timestamps_bidders.php
2018_12_23_100646_add_timestamps_checkout.php
2018_12_23_100651_add_timestamps_items.php
2018_12_23_100701_add_timestamps_winningbids.php
2018_12_23_100710_add_timestamps_paymentmethods.php
2019_02_13_160819_create_vehicles_table.php
2019_02_16_085913_create_vehicle_scores_table.php
2019_02_16_085927_create_judges_table.php
2019_02_16_091631_create_peoples_choices_table.php
2019_02_16_092700_create_car_show_winners_table.php
2019_02_16_092731_create_car_show_categories_table.php
seeds
.gitignore
public
resources
routes
stats
storage
tests
.env.example
.ftpconfig
.gitattributes
.gitignore
.htaccess.bak
artisan
composer.json
composer.lock
composer.lock.bak
package.json
phpunit.xml
readme.md
server.php
webpack.mix.js
silent-auction/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php

31 lines
522 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddTimestampsPaymentmethods extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('payment_methods', function ($table) {
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}