Chatwoot/db/migrate/20201123195011_create_platform_apps.rb

9 lines
179 B
Ruby
Raw Normal View History

2021-01-14 15:05:22 +00:00
class CreatePlatformApps < ActiveRecord::Migration[6.0]
def change
create_table :platform_apps do |t|
t.string :name, null: false
t.timestamps
end
end
end