mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 22:13:45 +08:00
10 lines
226 B
Ruby
10 lines
226 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 null: false
|
|
end
|
|
end
|
|
end
|