clocks_server/db/migrate/20260202002713_create_text_tracker_messages.rb
Bill Rossi 675181e954
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
Make-a the models
2026-02-01 19:45:29 -05:00

10 lines
212 B
Ruby

class CreateTextTrackerMessages < ActiveRecord::Migration[8.1]
def change
create_table :text_tracker_messages do |t|
t.integer :text_tracker_id
t.text :text
t.timestamps
end
end
end