This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20120311170118_create_users.rb

10 lines
214 B
Ruby

class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :username, limit: 20, null: false
t.string :avatar_url, null: false
t.timestamps
end
end
end