mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
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
|