Skip to content

Instantly share code, notes, and snippets.

@sasajib
Created June 11, 2014 20:00
Show Gist options
  • Save sasajib/05c2e3404d8f83bd9b71 to your computer and use it in GitHub Desktop.
Save sasajib/05c2e3404d8f83bd9b71 to your computer and use it in GitHub Desktop.
Schema::create('quizzes', function(Blueprint $table)
{
$table->increments('id');
$table->string('title');
$table->text('description');
$table->integer('type');
$table->boolean('active')->default(true);
$table->timestamp('time_limit');
$table->integer('viewed')->default(0);
$table->integer('answered')->default(0);
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment