mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:31:42 +00:00
8 lines
181 B
Ruby
8 lines
181 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddAnonymousToSite < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :sites, :colaboracion_anonima, :boolean, default: false
|
||
|
end
|
||
|
end
|