10 lines
180 B
Ruby
10 lines
180 B
Ruby
|
|
class CreateUsers < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
create_table :users do |t|
|
||
|
|
t.timestamps
|
||
|
|
t.string :displayname
|
||
|
|
t.text :profile
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|