mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-07 22:33:56 -05:00
8 lines
192 B
Ruby
8 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddScheduledCheckToPod < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :pods, :scheduled_check, :boolean, default: false, null: false
|
|
end
|
|
end
|