9 lines
131 B
Ruby
9 lines
131 B
Ruby
|
Sequel.migration do
|
||
|
up {
|
||
|
DB['ALTER TABLE sites ADD CONSTRAINT uniqueusername UNIQUE (username)'].first
|
||
|
}
|
||
|
|
||
|
down {
|
||
|
}
|
||
|
end
|