mirror of
https://github.com/discourse/discourse.git
synced 2025-09-10 21:01:33 +08:00
9 lines
241 B
Ruby
9 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
|