Chatwoot/db/migrate/20201123195011_create_platform_apps.rb
2021-01-14 20:35:22 +05:30

8 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