106_github_access_token.rb 250 B

123456789101112
  1. Sequel.migration do
  2. up {
  3. DB.add_column :sites, :github_access_token, :text
  4. DB.add_column :sites, :github_repo_name, :text
  5. }
  6. down {
  7. DB.drop_column :sites, :github_access_token
  8. DB.drop_column :sites, :github_repo_name
  9. }
  10. end