mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Adding a primary key just for SQL sanity sake :)
This commit is contained in:
@@ -4,7 +4,8 @@ class Migration_add_config_table extends CI_Migration {
|
||||
|
||||
public function up()
|
||||
{
|
||||
|
||||
$this->dbforge->add_field('id');
|
||||
|
||||
$this->dbforge->add_field(array(
|
||||
'lotw_download_url' => array(
|
||||
'type' => 'VARCHAR',
|
||||
@@ -20,6 +21,7 @@ class Migration_add_config_table extends CI_Migration {
|
||||
),
|
||||
));
|
||||
|
||||
|
||||
$this->dbforge->create_table('config');
|
||||
|
||||
$data = array(
|
||||
|
||||
Reference in New Issue
Block a user