9 lines
161 B
Ruby
9 lines
161 B
Ruby
class CreateNewstuff < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :newstuffs do |t|
|
|
t.text :newstuff
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|