diff --git a/database/migrations/2018_04_16_000059_create_sessions_table.php b/database/migrations/2018_04_16_000059_create_sessions_table.php new file mode 100644 index 000000000..c213297d1 --- /dev/null +++ b/database/migrations/2018_04_16_000059_create_sessions_table.php @@ -0,0 +1,35 @@ +string('id')->unique(); + $table->unsignedInteger('user_id')->nullable(); + $table->string('ip_address', 45)->nullable(); + $table->text('user_agent')->nullable(); + $table->text('payload'); + $table->integer('last_activity'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('sessions'); + } +}