5 lines
121 B
Ruby
5 lines
121 B
Ruby
class AddPrivateToSnippets < ActiveRecord::Migration
|
|
def change
|
|
add_column :snippets, :private, :boolean
|
|
end
|
|
end
|