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

6 lines
152 B
Ruby

class AddAuthorToProfiles < ActiveRecord::Migration[5.2]
def change
add_column :profiles, :author, :string, null: true, after: :user_id
end
end