mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
11 lines
241 B
Ruby
11 lines
241 B
Ruby
class CreateSailorsLogs < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :sailors_logs do |t|
|
|
t.string :slack_uid, null: false
|
|
t.jsonb :projects_summary, null: false, default: {}
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|