Skip to content

Commit 44f9d82

Browse files
committed
set the created at to now
1 parent 4b1ae2c commit 44f9d82

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Davzie/LaravelBootstrap/Seeds/UserTable.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public function run()
1616
'first_name' => Config::get('laravel-bootstrap::setup.first-name'),
1717
'last_name' => Config::get('laravel-bootstrap::setup.last-name'),
1818
'password' => Hash::make( Config::get('laravel-bootstrap::setup.password') ),
19+
'created_at' => date('Y-m-d H:i:s'),
1920
]
2021
];
2122
DB::table('users')->insert($types);

0 commit comments

Comments
 (0)