forked from electronick/enum_column
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME
More file actions
58 lines (36 loc) · 1.52 KB
/
README
File metadata and controls
58 lines (36 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Overview
This gem is an extension to ActiveRecord which enables native support of enumerations in the database schema using the ENUM type in MySQL.
Currently only MySQL is implemented.
Tested with Rails 3.0.11 and 3.1.3. Works with Scaffolding. Rails 3.2 doesn't work yet.
Supported adapters:
mysql
mysql2
How to use it.
In you Gemfile:
gem 'enum_column3', :git => 'http://github.com/taktsoft/enum_column3.git'
In your schema:
When you create your schema, specify the constraint as a limit:
create_table :enumerations, :force => true do |t|
t.column :severity, :enum, :limit => [:low, :medium, :high, :critical], :default => :medium
t.column :color, :enum, :limit => [:red, :blue, :green, :yellow]
...
end
In the model:
You can then automatically validate this column using:
validates_columns :severity, :color
The rest will be handled for you. All enumerated values will be given as symbols.
@e = Enumeration.new
@e.severity = :medium
You can always use the column reflection to get the list of possible values from the database column.
Enumeration.columns_hash['color'].limit
or
@enumeration.column_for_attribute(:color).limit
Will yield: [:red, :blue, :green, :yellow]
In views:
You can use enum_select helper to generate input for enumerated attribute as:
<%= enum_select(@enumeration, 'severity')%>
or
<%= form_for @enumeration do |f| %>
<%= f.label :severity %>
<%= f.enum_select :severity %>
<% end %>