botpop/plugins/base/migrations/04_create_emails.rb
Arthur Poulet 36f38abcf0 Improve puppet plugin
- add email system
- improve mail display
- improve privacy
2015-11-21 22:28:37 +01:00

15 lines
282 B
Ruby

Sequel.migration do
change do
create_table(:emails) do
primary_key :id
String :authname
String :address
DateTime :created_at
Integer :usage
Bool :primary, default: false
index [:address], unique: true
end
end
end