diff --git a/htdocs/application/controllers/main.php b/htdocs/application/controllers/main.php index 2ffd464..9f830cc 100755 --- a/htdocs/application/controllers/main.php +++ b/htdocs/application/controllers/main.php @@ -120,6 +120,10 @@ class Main extends CI_Controller ); $this->dbforge->add_field($fields); $this->dbforge->add_key('id', true); + $this->dbforge->add_key('pid'); + $this->dbforge->add_key('private'); + $this->dbforge->add_key('replyto'); + $this->dbforge->add_key('created'); $this->dbforge->create_table('pastes', true); } }