Merge branch 'Task/3_create_database_migration' into 'master'
Create migration, add option to model and install Active Record See merge request !3
Showing
| ... | ... | @@ -5,8 +5,8 @@ ruby '3.0.1' |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' | ||
| gem 'rails', '~> 6.1.3', '>= 6.1.3.2' | ||
| # Use sqlite3 as the database for Active Record | ||
| gem 'sqlite3', '~> 1.4' | ||
| # Use mysql2 as the database for Active Record | ||
| gem 'mysql2', '~> 0.5' | ||
| # Use Puma as the app server | ||
| gem 'puma', '~> 5.0' | ||
| # Use SCSS for stylesheets | ||
| ... | ... |
app/models/apply_job.rb
0 → 100644
app/models/city.rb
0 → 100644
app/models/company.rb
0 → 100644
app/models/favorite_job.rb
0 → 100644
app/models/history_job.rb
0 → 100644
app/models/industry.rb
0 → 100644
app/models/job.rb
0 → 100644
app/models/user.rb
0 → 100644
db/migrate/20210706092230_create_jobs.rb
0 → 100644
db/migrate/20210706092557_create_cities.rb
0 → 100644
db/migrate/20210706092905_create_users.rb
0 → 100644
db/schema.rb
0 → 100644
test/fixtures/apply_jobs.yml
0 → 100644
test/fixtures/cities.yml
0 → 100644
test/fixtures/companies.yml
0 → 100644
test/fixtures/favorite_jobs.yml
0 → 100644
test/fixtures/history_jobs.yml
0 → 100644
test/fixtures/industries.yml
0 → 100644
test/fixtures/jobs.yml
0 → 100644
test/fixtures/users.yml
0 → 100644
test/models/apply_job_test.rb
0 → 100644
test/models/city_test.rb
0 → 100644
test/models/company_test.rb
0 → 100644
test/models/favorite_job_test.rb
0 → 100644
test/models/history_job_test.rb
0 → 100644
test/models/industry_test.rb
0 → 100644
test/models/job_test.rb
0 → 100644
test/models/user_test.rb
0 → 100644
Please
register
or
sign in
to comment