File: 20211023013351_bar.rb

package info (click to toggle)
ruby-otr-activerecord 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: ruby: 561; sh: 133; makefile: 6
file content (7 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
class Bar < ActiveRecord::Migration[7.0]
  def change
    create_table :bars do |t|
      t.string :name, null: false
    end
  end
end