Guest User

Untitled

a guest
Mar 18th, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Schema::create('users', function (Blueprint $table){
  2. $table->increments('id');
  3. $table->string('name');
  4. $table->string('email')->unique();
  5. $table->string('password');
  6. $table->integer('saldo');
  7. $table->rememberToken();
  8. $table->timestamps();
  9. });
  10.  
  11. User::create([
  12. 'name' => 'Rigoberto Disousa',
  13. 'email' => 'pajaritosami88@gmail.com',
  14. 'password' => '1234567',
  15. 'saldo' => 0,
  16. ]);
Add Comment
Please, Sign In to add comment