Fixed typo in EXISTS sql

This commit is contained in:
Charles Oppenheimer 2013-02-06 13:37:38 -08:00
parent 9f1c978f11
commit c18a23f63c

View File

@ -1,6 +1,6 @@
class AddMetaDataToForumThreads < ActiveRecord::Migration
def change
execute "CREATE EXTENSION IF NOT EXITS hstore"
execute "CREATE EXTENSION IF NOT EXISTS hstore"
add_column :forum_threads, :meta_data, :hstore
end
end