Skip to content

Commit 291edc4

Browse files
committed
Fix prefix in migration
1 parent 9a4566c commit 291edc4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

migrations/pastebin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function update_schema()
2626
{
2727
return array(
2828
'add_tables' => array(
29-
$this->table_prefix . 'pb' => array(
29+
$this->table_prefix . 'pastebin' => array(
3030
'COLUMNS' => array(
3131
'snippet_id' => array('UINT:8', null, 'auto_increment'),
3232
'snippet_author' => array('UINT:8', 0),
@@ -50,7 +50,7 @@ public function update_schema()
5050
public function revert_schema()
5151
{
5252
return array(
53-
'drop_tables' => array($this->table_prefix . 'pb'),
53+
'drop_tables' => array($this->table_prefix . 'pastebin'),
5454
);
5555
}
5656

0 commit comments

Comments
 (0)