Created
March 18, 2021 15:31
-
-
Save BetterProgramming/ff4a19b3a22cddf3c5ef70f03628b874 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# == Schema Information | |
# | |
# Table name: users | |
# | |
# id :bigint(8) not null, primary key | |
# status :integer(4) default("pending") | |
class User < ApplicationRecord | |
enum status: { | |
pending: 0, | |
active: 1, | |
archived: 2 | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment