mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
15 lines
309 B
Ruby
15 lines
309 B
Ruby
class CreateOpenkylinSignDetails < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :openkylin_sign_details do |t|
|
|
t.references :user
|
|
t.string :login
|
|
t.string :email
|
|
t.string :nickname
|
|
t.string :phone
|
|
t.string :address
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|