mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:24:07 +08:00
10 lines
241 B
Ruby
10 lines
241 B
Ruby
class CreateUserFieldOptions < ActiveRecord::Migration
|
|
def change
|
|
create_table :user_field_options, force: true do |t|
|
|
t.references :user_field, null: false
|
|
t.string :value, null: false
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|