Files
Dalan/db/migrate/20190827080317_add_data_field_to_users_table.rb
2026-08-13 19:56:46 +03:30

6 lines
147 B
Ruby

class AddDataFieldToUsersTable < ActiveRecord::Migration[5.2]
def change
add_column :users, :data, :text, null: true, after: :role
end
end