diff --git a/application/migrations/066_add_user_hide_notes.php b/application/migrations/066_add_user_hide_notes.php new file mode 100644 index 00000000..447be122 --- /dev/null +++ b/application/migrations/066_add_user_hide_notes.php @@ -0,0 +1,25 @@ +dbforge->add_column('users', $fields); + } + + public function down() + { + $this->dbforge->drop_column('users', 'user_show_notes'); + } +}