Rogier Neeleman
9 years ago
7 changed files with 374 additions and 0 deletions
@ -0,0 +1,42 @@ |
|||||||
|
<?php |
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add regio table |
||||||
|
*/ |
||||||
|
class Migration_Add_groep extends CI_Migration |
||||||
|
{ |
||||||
|
|
||||||
|
public function up() |
||||||
|
{ |
||||||
|
$this->dbforge->add_field(array( |
||||||
|
'id' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '5', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'auto_increment' => TRUE, |
||||||
|
), |
||||||
|
'regioid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'naam' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
'plaats' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
)); |
||||||
|
$this->dbforge->add_key('id', TRUE); |
||||||
|
$this->dbforge->create_table('groep'); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public function down() |
||||||
|
{ |
||||||
|
$this->dbforge->drop_table('groep'); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
<?php |
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add regio table |
||||||
|
*/ |
||||||
|
class Migration_Add_subgroep extends CI_Migration |
||||||
|
{ |
||||||
|
|
||||||
|
public function up() |
||||||
|
{ |
||||||
|
$this->dbforge->add_field(array( |
||||||
|
'id' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '5', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'auto_increment' => TRUE, |
||||||
|
), |
||||||
|
'regioid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'groepid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '5', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'jaar' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '4', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'naam' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
'themanaam' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
'nummer' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
)); |
||||||
|
$this->dbforge->add_key('id', TRUE); |
||||||
|
$this->dbforge->create_table('subgroep'); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public function down() |
||||||
|
{ |
||||||
|
$this->dbforge->drop_table('subgroep'); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,53 @@ |
|||||||
|
<?php |
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add regio table |
||||||
|
*/ |
||||||
|
class Migration_Add_lijst extends CI_Migration |
||||||
|
{ |
||||||
|
|
||||||
|
public function up() |
||||||
|
{ |
||||||
|
$this->dbforge->add_field(array( |
||||||
|
'id' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'auto_increment' => TRUE, |
||||||
|
), |
||||||
|
'regioid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'jaar' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'constraint' => '4', |
||||||
|
), |
||||||
|
'naam' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
'ronde' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '1', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'actief' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '1', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
)); |
||||||
|
$this->dbforge->add_key('id', TRUE); |
||||||
|
$this->dbforge->create_table('lijst'); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public function down() |
||||||
|
{ |
||||||
|
$this->dbforge->drop_table('lijst'); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,43 @@ |
|||||||
|
<?php |
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add regio table |
||||||
|
*/ |
||||||
|
class Migration_Add_spelgebied extends CI_Migration |
||||||
|
{ |
||||||
|
|
||||||
|
public function up() |
||||||
|
{ |
||||||
|
$this->dbforge->add_field(array( |
||||||
|
'id' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'auto_increment' => TRUE, |
||||||
|
), |
||||||
|
'regioid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'jaar' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'constraint' => '4', |
||||||
|
), |
||||||
|
'naam' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
)); |
||||||
|
$this->dbforge->add_key('id', TRUE); |
||||||
|
$this->dbforge->create_table('spelgebied'); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public function down() |
||||||
|
{ |
||||||
|
$this->dbforge->drop_table('spelgebied'); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,48 @@ |
|||||||
|
<?php |
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add regio table |
||||||
|
*/ |
||||||
|
class Migration_Add_onderdeel extends CI_Migration |
||||||
|
{ |
||||||
|
|
||||||
|
public function up() |
||||||
|
{ |
||||||
|
$this->dbforge->add_field(array( |
||||||
|
'id' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'auto_increment' => TRUE, |
||||||
|
), |
||||||
|
'regioid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'spelgebiedid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'jaar' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'constraint' => '4', |
||||||
|
), |
||||||
|
'naam' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
)); |
||||||
|
$this->dbforge->add_key('id', TRUE); |
||||||
|
$this->dbforge->create_table('onderdeel'); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public function down() |
||||||
|
{ |
||||||
|
$this->dbforge->drop_table('onderdeel'); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,68 @@ |
|||||||
|
<?php |
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add regio table |
||||||
|
*/ |
||||||
|
class Migration_Add_vragen extends CI_Migration |
||||||
|
{ |
||||||
|
|
||||||
|
public function up() |
||||||
|
{ |
||||||
|
$this->dbforge->add_field(array( |
||||||
|
'id' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'auto_increment' => TRUE, |
||||||
|
), |
||||||
|
'regioid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'onderdeelid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'lijstid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'volgorde' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'jaar' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'constraint' => '4', |
||||||
|
), |
||||||
|
'vraag' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
'antwoord' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '1', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'score' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
)); |
||||||
|
$this->dbforge->add_key('id', TRUE); |
||||||
|
$this->dbforge->create_table('vragen'); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public function down() |
||||||
|
{ |
||||||
|
$this->dbforge->drop_table('vragen'); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,64 @@ |
|||||||
|
<?php |
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add regio table |
||||||
|
*/ |
||||||
|
class Migration_Add_resultaat extends CI_Migration |
||||||
|
{ |
||||||
|
|
||||||
|
public function up() |
||||||
|
{ |
||||||
|
$this->dbforge->add_field(array( |
||||||
|
'id' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
'auto_increment' => TRUE, |
||||||
|
), |
||||||
|
'regioid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '3', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'vraagid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'ronde' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '1', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'subgroepid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '5', |
||||||
|
), |
||||||
|
'timestamp' => array( |
||||||
|
'type' => 'DATETIME', |
||||||
|
), |
||||||
|
'score' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '6', |
||||||
|
'unsigned' => TRUE, |
||||||
|
), |
||||||
|
'userid' => array( |
||||||
|
'type' => 'INT', |
||||||
|
'constraint' => '4', |
||||||
|
), |
||||||
|
'lokatie' => array( |
||||||
|
'type' => 'VARCHAR', |
||||||
|
'constraint' => '80', |
||||||
|
), |
||||||
|
)); |
||||||
|
$this->dbforge->add_key('id', TRUE); |
||||||
|
$this->dbforge->create_table('resultaat'); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public function down() |
||||||
|
{ |
||||||
|
$this->dbforge->drop_table('resultaat'); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue