diff --git a/app/database/migrations/2014_12_13_122009_create_session_table.php b/app/database/migrations/2014_12_13_122009_create_session_table.php new file mode 100644 index 00000000..2aac4339 --- /dev/null +++ b/app/database/migrations/2014_12_13_122009_create_session_table.php @@ -0,0 +1,32 @@ +string('id')->unique(); + $t->text('payload'); + $t->integer('last_activity'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('sessions'); + } + +}