mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
8 lines
175 B
Ruby
8 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddRememberTokenToUsers < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :users, :remember_token, :string, null: true
|
|
end
|
|
end
|