Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $table->increments('id')->unsigned();
  2. $table->string('nome', 45);
  3. $table->string('email', 64)->unique();
  4. $table->string('username', 45)->nullable();
  5. $table->string('senha', 20)->nullable();
  6. $table->string('codigo', 100)->nullable();
  7. $table->boolean('ativo')->default(false);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement