mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
11 lines
250 B
Ruby
11 lines
250 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.add_column :sites, :github_access_token, :text
|
|
DB.add_column :sites, :github_repo_name, :text
|
|
}
|
|
|
|
down {
|
|
DB.drop_column :sites, :github_access_token
|
|
DB.drop_column :sites, :github_repo_name
|
|
}
|
|
end
|