diff --git a/application/migrations/055_add_signature_to_station_profile.php b/application/migrations/055_add_signature_to_station_profile.php new file mode 100644 index 00000000..5bd8b2dd --- /dev/null +++ b/application/migrations/055_add_signature_to_station_profile.php @@ -0,0 +1,22 @@ +dbforge->add_column('station_profile', $fields); + } + + public function down() + { + $this->dbforge->drop_column('station_profile', 'station_sig'); + $this->dbforge->drop_column('station_profile', 'station_sig_info'); + } +} \ No newline at end of file