nas/db/migrate/20230522093135_add_license_to_custom_emojis.rb
2023-05-22 18:40:06 +09:00

7 lines
177 B
Ruby

# frozen_string_literal: true
class AddLicenseToCustomEmojis < ActiveRecord::Migration[6.1]
def change
add_column :custom_emojis, :license, :string, null: true
end
end