11 lines
197 B
Ruby
11 lines
197 B
Ruby
|
|
class CreateLinkCategories < ActiveRecord::Migration[7.1]
|
||
|
|
def change
|
||
|
|
create_table :link_categories do |t|
|
||
|
|
t.string :name
|
||
|
|
t.text :description
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|