21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-04-27 06:20:50 +02:00
chexpire/db/migrate/20180829134404_add_mode_to_checks.rb

6 lines
141 B
Ruby

class AddModeToChecks < ActiveRecord::Migration[5.2]
def change
add_column :checks, :mode, :integer, default: 0, null: false
end
end