class CreateGltfModels

typed: true

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20191011205356_create_gltf_models.rb, line 3
def change
  create_table :gltf_models do |t|
    t.text :global_path

    t.timestamps
  end
end