From 58913ff03e8889a03bb56140a9f5d1fc60dfdeae Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Mon, 3 Mar 2014 22:37:51 +0000 Subject: [PATCH] fixed typo --- .../migrations/005_add_dxcc_enddate.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 application/migrations/005_add_dxcc_enddate.php diff --git a/application/migrations/005_add_dxcc_enddate.php b/application/migrations/005_add_dxcc_enddate.php new file mode 100644 index 00000000..0d827e42 --- /dev/null +++ b/application/migrations/005_add_dxcc_enddate.php @@ -0,0 +1,22 @@ + array('type' => 'datetime') + ); + + $this->dbforge->add_column('dxcc', $fields); + + } + + + public function down() + { + $this->dbforge->drop_column('dxcc', 'end_date'); + } +} +?> \ No newline at end of file