Unverified Commit 5b1be7d8 authored by Dennis Schubert's avatar Dennis Schubert Committed by Benjamin Neff
Browse files

Remove the schema.rb from this repo

Although this is contrary to rails best-practises, we cannot provide a schema.rb that works for both MySQL and PostgreSQL, so we have no choice. Our migrations are maintained, so it should always be possible to get back to a "clean" database schema anyway.
parent ef705498
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -27,6 +27,12 @@ public/404.html
public/422.html
public/500.html

# the db/schema.rb. Although this is contrary to rails best-practises, we
# cannot provide a schema.rb that works for both MySQL and PostgreSQL, so we
# have no choice. Our migrations are maintained, so it should always be
# possible to get back to a "clean" database schema anyway.
db/schema.rb

# Sprites
app/assets/images/branding-*.png
app/assets/images/branding/logos-*.png

db/schema.rb

deleted100644 → 0
+0 −675

File deleted.

Preview size limit exceeded, changes collapsed.

+4 −5
Original line number Diff line number Diff line
namespace :ci do
  namespace :travis do
    task prepare_db: %w(db:create db:test:load)
    task prepare: %w(prepare_db assets:generate_error_pages)
    task prepare_db: %w[db:create db:migrate]
    task prepare: %w[prepare_db assets:generate_error_pages]

    desc "Run everyhting except cucumber"
    task other: %w(prepare tests:generate_fixtures spec jasmine:ci)
    task other: %w[prepare tests:generate_fixtures spec jasmine:ci]

    desc "Run cucumber"
    task cucumber: %w(prepare rake:cucumber)

    task cucumber: %w[prepare rake:cucumber]
  end
end