1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 11:19:51 +00:00
discourse/db/migrate/20140925173220_create_user_fields.rb

10 lines
210 B
Ruby
Raw Normal View History

class CreateUserFields < ActiveRecord::Migration
def change
create_table :user_fields do |t|
t.string :name, null: false
t.string :field_type, null: false
t.timestamps
end
end
end