mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
13 lines
No EOL
217 B
Ruby
13 lines
No EOL
217 B
Ruby
Sequel.migration do
|
|
up {
|
|
alter_table(:sites) do
|
|
set_column_type :score, :real
|
|
end
|
|
}
|
|
|
|
down {
|
|
alter_table(:sites) do
|
|
set_column_type :score, :decimal
|
|
end
|
|
}
|
|
end |