mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
11 lines
194 B
Ruby
11 lines
194 B
Ruby
class CreateApplications < ActiveRecord::Migration
|
|
def change
|
|
create_table :apps do |t|
|
|
t.string :name
|
|
t.string :package_name
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|