diff --git a/app/config/version.php b/app/config/version.php index 964d16247c..26c8cf0cfd 100644 --- a/app/config/version.php +++ b/app/config/version.php @@ -1,5 +1,5 @@ 'v1.2.7-master', - 'hash_version' => 'v1.2.7-master-38-gf743bac', + 'hash_version' => 'v1.2.7-master-39-g03bd149', ); \ No newline at end of file diff --git a/app/database/migrations/2015_06_10_003314_fix_default_for_user_notes.php b/app/database/migrations/2015_06_10_003314_fix_default_for_user_notes.php new file mode 100644 index 0000000000..fe1fe08961 --- /dev/null +++ b/app/database/migrations/2015_06_10_003314_fix_default_for_user_notes.php @@ -0,0 +1,30 @@ +text('notes')->nullable()->default(NULL); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } + +}