impressionist/spec/dummy/db/migrate/20150207135825_create_profi...

11 lines
183 B
Ruby
Raw Normal View History

class CreateProfiles < ActiveRecord::Migration[4.2]
def change
create_table :profiles do |t|
t.string :username
t.string :slug
t.timestamps
end
end
end