Fixed typo in EXISTS sql
This commit is contained in:
parent
9f1c978f11
commit
c18a23f63c
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
class AddMetaDataToForumThreads < ActiveRecord::Migration
|
class AddMetaDataToForumThreads < ActiveRecord::Migration
|
||||||
def change
|
def change
|
||||||
execute "CREATE EXTENSION IF NOT EXITS hstore"
|
execute "CREATE EXTENSION IF NOT EXISTS hstore"
|
||||||
add_column :forum_threads, :meta_data, :hstore
|
add_column :forum_threads, :meta_data, :hstore
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue