Created
June 11, 2014 20:00
-
-
Save sasajib/05c2e3404d8f83bd9b71 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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