36f38abcf0
- add email system - improve mail display - improve privacy
15 lines
282 B
Ruby
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
|