class CreateStickRecords

typed: false

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20191005220603_create_stick_records.rb, line 3
def change
  create_table :stick_records do |t|
    t.text :identifier
    t.text :modifiers

    t.timestamps
  end
end