9 lines
179 B
Ruby
9 lines
179 B
Ruby
|
class CreatePlatformApps < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
create_table :platform_apps do |t|
|
||
|
t.string :name, null: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|