1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/db/migrate/20190929131544_change_user_...

19 lines
509 B
Ruby
Raw Normal View History

2019-09-29 13:23:06 +00:00
# frozen_string_literal: true
class ChangeUserAgent < ActiveRecord::Migration[6.0]
include Partynest::Migration
def change
2019-09-30 22:34:35 +00:00
remove_constraint :sessions, :user_agent, <<~SQL
2019-09-29 13:23:06 +00:00
user_agent = '' OR is_good_big_text(user_agent)
SQL
remove_column :sessions, :user_agent, :string, null: false, default: ''
add_column :sessions, :user_agent, :string, null: true
2019-09-29 14:00:55 +00:00
add_constraint :sessions, :user_agent, <<~SQL
2019-09-29 13:23:06 +00:00
user_agent IS NULL OR is_good_big_text(user_agent)
SQL
end
end