clarion/db/migrate/20241001115434_add_owner_fi...

6 lines
150 B
Ruby
Raw Permalink Normal View History

2024-10-01 14:59:48 +03:00
class AddOwnerFieldToUsers < ActiveRecord::Migration[7.1]
def change
add_column :users, :owner, :boolean, null: false, default: false
end
end