mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
228 B
Ruby
10 lines
228 B
Ruby
|
class CreateUserFieldOptions < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :user_field_options do |t|
|
||
|
t.references :user_field, null: false
|
||
|
t.string :value, null: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|