mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
10 lines
227 B
Ruby
10 lines
227 B
Ruby
class CreateUserFields < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :user_fields do |t|
|
|
t.string :name, null: false
|
|
t.string :field_type, null: false
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|