Advertisement
Guest User

Untitled

a guest
Aug 26th, 2015
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Schema::create('user_types', function (Blueprint $table) {
  2. $table->increments('id');
  3. $table->string('name');
  4. $table->integer('discount')->default(0)->unsigned();
  5. $table->integer('ip_changes')->default(3)->unsigned();
  6. $table->integer('pauses')->default(3)->unsigned();
  7. $table->enum('default', ['0', '1']);
  8. $table->timestamps();
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement