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

6 lines
146 B
Ruby

class AddDefaultStateToProfilesTable < ActiveRecord::Migration[5.2]
def change
change_column_default :profiles, :state, 'drafted'
end
end