mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-10 23:28:04 -04:00
9 lines
217 B
Ruby
9 lines
217 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
|