Merge branch 'feature/migration' into 'master'
Feature/migration See merge request !1
Showing
| ... | @@ -5,8 +5,8 @@ ruby '2.6.5' | ... | @@ -5,8 +5,8 @@ ruby '2.6.5' |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| gem 'rails', '~> 6.0.1' | gem 'rails', '~> 6.0.1' | ||
| # Use sqlite3 as the database for Active Record | # Use mysql2 as the database for Active Record | ||
| gem 'sqlite3', '~> 1.4' | gem 'mysql2' | ||
| # Use Puma as the app server | # Use Puma as the app server | ||
| gem 'puma', '~> 4.1' | gem 'puma', '~> 4.1' | ||
| # Use SCSS for stylesheets | # Use SCSS for stylesheets | ||
| ... | @@ -28,6 +28,8 @@ gem 'jbuilder', '~> 2.7' | ... | @@ -28,6 +28,8 @@ gem 'jbuilder', '~> 2.7' |
| # Reduces boot times through caching; required in config/boot.rb | # Reduces boot times through caching; required in config/boot.rb | ||
| gem 'bootsnap', '>= 1.4.2', require: false | gem 'bootsnap', '>= 1.4.2', require: false | ||
| gem 'devise' | |||
| group :development, :test do | group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
| ... | ... |
app/models/city.rb
0 → 100644
app/models/city_job.rb
0 → 100644
app/models/company.rb
0 → 100644
app/models/industry.rb
0 → 100644
app/models/industry_job.rb
0 → 100644
app/models/job.rb
0 → 100644
app/models/user.rb
0 → 100644
app/models/user_job.rb
0 → 100644
config/initializers/devise.rb
0 → 100644
config/locales/devise.en.yml
0 → 100644
db/migrate/20191127075130_create_jobs.rb
0 → 100644
db/migrate/20191127075247_create_cities.rb
0 → 100644
db/schema.rb
0 → 100644
Please
register
or
sign in
to comment