mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
10 lines
153 B
Ruby
10 lines
153 B
Ruby
class AddBracketName < ActiveRecord::Migration
|
|
def self.up
|
|
change_table :brackets do |b|
|
|
b.string :name
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
end
|
|
end
|