aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate
diff options
context:
space:
mode:
authorZog2018-03-15 16:38:20 +0100
committerJohan Van Ryseghem2018-03-27 09:35:09 +0200
commit1386e3c2d525b61bf0e6a7ace9ed755bff9eb998 (patch)
treeeaf06fcc8dcdaa308a6bb316b380f62b4887a34f /db/migrate
parent7e56064ec6dbb60d00453d39680c2fdd9a462011 (diff)
downloadchouette-core-1386e3c2d525b61bf0e6a7ace9ed755bff9eb998.tar.bz2
Refs #6201; Remove short_name from calendars
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20180315152714_remove_short_name_from_calendars.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20180315152714_remove_short_name_from_calendars.rb b/db/migrate/20180315152714_remove_short_name_from_calendars.rb
new file mode 100644
index 000000000..3b6759f7b
--- /dev/null
+++ b/db/migrate/20180315152714_remove_short_name_from_calendars.rb
@@ -0,0 +1,5 @@
+class RemoveShortNameFromCalendars < ActiveRecord::Migration
+ def change
+ remove_column :calendars, :short_name, :string
+ end
+end