logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20170423005413_add_allowed_languages_to_user.rb (230B)


  1. class AddAllowedLanguagesToUser < ActiveRecord::Migration[5.0]
  2. def change
  3. add_column :users, :allowed_languages, :string, array: true, default: [], null: false
  4. add_index :users, :allowed_languages, using: :gin
  5. end
  6. end