mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-23 10:43:19 +00:00
5 lines
151 B
Ruby
5 lines
151 B
Ruby
class MakeUrisNullableInStatuses < ActiveRecord::Migration
|
|
def change
|
|
change_column :statuses, :uri, :string, null: true, default: nil
|
|
end
|
|
end
|