discourse/db/migrate/20140925173220_create_user_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
258 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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
2017-08-07 11:48:36 -04:00
t.timestamps null: false
end
end
end