Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make companies discardable #112

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/models/company.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
class Company < ApplicationRecord
include Discard::Model
default_scope { kept }

belongs_to :user, optional: true # The user who created /submitted the company

has_many :employees, dependent: :destroy
Expand Down
6 changes: 6 additions & 0 deletions db/migrate/20240124180242_add_discarded_at_to_companies.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class AddDiscardedAtToCompanies < ActiveRecord::Migration[6.1]
def change
add_column :companies, :discarded_at, :datetime
add_index :companies, :discarded_at
end
end
4 changes: 3 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2024_01_10_181520) do
ActiveRecord::Schema.define(version: 2024_01_24_180242) do

# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
Expand Down Expand Up @@ -182,6 +182,8 @@
t.bigint "user_id"
t.string "slug"
t.string "country_code"
t.datetime "discarded_at"
t.index ["discarded_at"], name: "index_companies_on_discarded_at"
t.index ["slug"], name: "index_companies_on_slug", unique: true
t.index ["user_id"], name: "index_companies_on_user_id"
end
Expand Down
Loading