A corporation manager and dashboard for EVE Online
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

7 wiersze
174 B

  1. class ReplaceNameWithIdInUser < ActiveRecord::Migration
  2. def change
  3. remove_column :users, :name, :string
  4. add_column :users, :userid, :integer, first: true
  5. end
  6. end