mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 14:08:07 +01:00
a9b5598c97
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
7 lines
150 B
Ruby
7 lines
150 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddSettingsToUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :settings, :text
|
|
end
|
|
end
|