2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-08 12:06:51 +08:00
discourse/db/migrate/20140925173220_create_user_fields.rb

9 lines
210 B
Ruby

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